update to RIO 0.11.1

This commit is contained in:
Cole Deck
2025-09-29 18:51:32 +00:00
parent 145a215305
commit 65f6052903
11 changed files with 28 additions and 20 deletions

View File

@@ -89,9 +89,9 @@ class InventorySearch:
:param filters: A meilisearch compatible filter statement.
:returns: The search results dict. Actual results are in a list under "hits", but there are other nice values that are useful in the root element."""
if filters:
q = self.idxref.search(query, {"filter": filters, "limit": 1000})
q = self.idxref.search(query, {"filter": filters, "limit": 10000})
else:
q = self.idxref.search(query)
q = self.idxref.search(query, {"limit": 10000})
return q
def _filter_one(self, filter: str):