1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-10-23 19:37:40 +00:00

Fix show archived books

This commit is contained in:
Ozzieisaacs
2020-12-23 09:07:49 +01:00
parent f6538b6110
commit 2bea447de5
2 changed files with 1 additions and 2 deletions

View File

@@ -421,7 +421,7 @@ def render_books_list(data, sort, book_id, page):
elif data == "language":
return render_language_books(page, book_id, order)
elif data == "archived":
return render_archived_books(page, book_id, order)
return render_archived_books(page, order)
elif data == "search":
term = (request.args.get('query') or '')
offset = int(int(config.config_books_per_page) * (page - 1))