mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
fix page out of range with full text
This commit is contained in:
parent
be87caf7f6
commit
3dfe5c9262
@ -17,6 +17,7 @@ from django_filters.rest_framework import DjangoFilterBackend
|
|||||||
from django_q.tasks import async_task
|
from django_q.tasks import async_task
|
||||||
from rest_framework import parsers
|
from rest_framework import parsers
|
||||||
from rest_framework.decorators import action
|
from rest_framework.decorators import action
|
||||||
|
from rest_framework.exceptions import NotFound
|
||||||
from rest_framework.filters import OrderingFilter, SearchFilter
|
from rest_framework.filters import OrderingFilter, SearchFilter
|
||||||
from rest_framework.generics import GenericAPIView
|
from rest_framework.generics import GenericAPIView
|
||||||
from rest_framework.mixins import (
|
from rest_framework.mixins import (
|
||||||
@ -382,6 +383,8 @@ class UnifiedSearchViewSet(DocumentViewSet):
|
|||||||
with index.open_index_searcher() as s:
|
with index.open_index_searcher() as s:
|
||||||
self.searcher = s
|
self.searcher = s
|
||||||
return super(UnifiedSearchViewSet, self).list(request)
|
return super(UnifiedSearchViewSet, self).list(request)
|
||||||
|
except NotFound:
|
||||||
|
raise
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
return HttpResponseBadRequest(str(e))
|
return HttpResponseBadRequest(str(e))
|
||||||
else:
|
else:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user