Skip to content

Commit

Permalink
Fixed merge problem - removed asArray, not necessary with os
Browse files Browse the repository at this point in the history
  • Loading branch information
mcop1 committed Apr 12, 2024
1 parent 79d4a7c commit c46b7ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Service.php
Original file line number Diff line number Diff line change
Expand Up @@ -730,7 +730,7 @@ public function getIdsFromFilterNoLimit($classId, array $filters, $fullTextQuery

$ids = [];
do {
$results = $this->openSearchClient->search($params)->asArray();
$results = $this->openSearchClient->search($params);
$total = $results['hits']['total'];
$searchAfter = end($results['hits']['hits'])['sort'];
$search->setSearchAfter($searchAfter);
Expand Down

0 comments on commit c46b7ae

Please sign in to comment.