Skip to content

Commit

Permalink
Merge pull request #91 from netgen/bugfix/indexing
Browse files Browse the repository at this point in the history
Fix indexing
  • Loading branch information
RandyCupic authored Dec 16, 2021
2 parents 3e43cfe + 18ee25b commit f339a1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bundle/Core/FieldType/RemoteMedia/SearchField.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function getIndexData(Field $field, FieldDefinition $fieldDefinition)
return [
new Search\Field(
'value',
$field->value->data['url'],
$field->value->data['url'] ?? null,
new StringField(),
),
];
Expand Down

0 comments on commit f339a1f

Please sign in to comment.