Skip to content

Commit

Permalink
Issue #3427571: Support '*' as value in manually created Search API q…
Browse files Browse the repository at this point in the history
…ueries
  • Loading branch information
mkalkbrenner committed Apr 10, 2024
1 parent 46d221f commit e4ab996
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Plugin/search_api/backend/SearchApiSolrBackend.php
Original file line number Diff line number Diff line change
Expand Up @@ -3673,7 +3673,7 @@ protected function formatFilterValue($value, FieldInterface $field, ?string $typ
case 'date':
$value = $this->formatDate($value);
if ($value === FALSE) {
return 0;
throw new SearchApiSolrException('Unsupported date value');
}
break;

Expand Down

0 comments on commit e4ab996

Please sign in to comment.