X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/cfbd4683aa50fb51882aa0ab825492b2dd49b142..3a2793b0c0d892fa497007c3466943de3de5a752:/src/api/handlers.py diff --git a/src/api/handlers.py b/src/api/handlers.py index cee41f48a..2e847c594 100644 --- a/src/api/handlers.py +++ b/src/api/handlers.py @@ -179,7 +179,7 @@ class BookDetails(object): try: author, title, book_id = after.split(SORT_KEY_SEP) except ValueError: - return [] + return Book.objects.none() return books.filter(Q(sort_key_author__gt=author) | (Q(sort_key_author=author) & Q(sort_key__gt=title)) | (Q(sort_key_author=author) & Q(sort_key=title) & Q(id__gt=int(book_id))))