From c46b7ae4dbbdbc99e94c75035ff2889b0d5bfab9 Mon Sep 17 00:00:00 2001 From: mcop1 Date: Fri, 12 Apr 2024 09:30:21 +0200 Subject: [PATCH] Fixed merge problem - removed asArray, not necessary with os --- src/Service.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Service.php b/src/Service.php index c38109b..c319828 100644 --- a/src/Service.php +++ b/src/Service.php @@ -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);