1
0
mirror of https://github.com/janeczku/calibre-web synced 2025-11-12 21:33:00 +00:00

Invisible books are no longer counted in archived page (Fix for #3221)

This commit is contained in:
Ozzie Isaacs
2024-11-20 18:20:33 +01:00
parent 2bfbbfd4ba
commit 0bf3bb381f
2 changed files with 1 additions and 15 deletions

View File

@@ -796,7 +796,7 @@ def render_archived_books(page, sort_param):
True,
True, config.config_read_column)
name = _('Archived Books') + ' (' + str(len(archived_book_ids)) + ')'
name = _('Archived Books') + ' (' + str(len(entries)) + ')'
page_name = "archived"
return render_title_template('index.html', random=random, entries=entries, pagination=pagination,
title=name, page=page_name, order=sort_param[1])