Skip to content

Commit

Permalink
fixed tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mkalkbrenner committed Nov 8, 2023
1 parent b6be056 commit c314c5b
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 @@ -1768,7 +1768,7 @@ public function search(QueryInterface $query) {
// mapped.
if (!empty($unspecific_field_names['search_api_language'])) {
$solarium_query->createFilterQuery('language_filter')->setQuery(
$this->createFilterQuery($unspecific_field_names['search_api_language'], $language_ids, 'IN', new Field($index, 'search_api_language'), $options)
$this->createFilterQuery($unspecific_field_names['search_api_language'], $language_ids, 'IN', $index_fields['search_api_language'], $options)
);
}
}
Expand Down

0 comments on commit c314c5b

Please sign in to comment.