Fix: correct all results with whoosh queries (#9331)

This commit is contained in:
shamoon 2025-03-07 13:31:23 -08:00 committed by GitHub
parent 5f16d5f5f1
commit b4b0f802e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -32,6 +32,7 @@ from rest_framework.permissions import IsAuthenticated
from rest_framework.response import Response from rest_framework.response import Response
from rest_framework.viewsets import ModelViewSet from rest_framework.viewsets import ModelViewSet
from documents.index import DelayedQuery
from documents.permissions import PaperlessObjectPermissions from documents.permissions import PaperlessObjectPermissions
from paperless.filters import GroupFilterSet from paperless.filters import GroupFilterSet
from paperless.filters import UserFilterSet from paperless.filters import UserFilterSet
@ -66,15 +67,15 @@ class StandardPagination(PageNumberPagination):
) )
def get_all_result_ids(self): def get_all_result_ids(self):
ids = [] query = self.page.paginator.object_list
if hasattr(self.page.paginator.object_list, "saved_results"): if isinstance(query, DelayedQuery):
results_page = self.page.paginator.object_list.saved_results[0]
if results_page is not None:
for i in range(len(results_page.results.docs())):
try: try:
fields = results_page.results.fields(i) ids = [
if "id" in fields: query.searcher.ixreader.stored_fields(
ids.append(fields["id"]) doc_num,
)["id"]
for doc_num in query.saved_results.get(0).results.docs()
]
except Exception: except Exception:
pass pass
else: else: