From b632f1b9a2a8ebc42e4549f81e9eb16685edb6f3 Mon Sep 17 00:00:00 2001 From: rjaakke <11254908+rjaakke@users.noreply.github.com> Date: Mon, 18 Aug 2025 20:31:31 +0200 Subject: [PATCH] Update get_filtered_book call to include archived books. --- cps/helper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cps/helper.py b/cps/helper.py index 8fa9bbac9..7d38866cf 100644 --- a/cps/helper.py +++ b/cps/helper.py @@ -329,7 +329,7 @@ def edit_book_read_status(book_id, read_status=None): else: try: calibre_db.create_functions(config) - book = calibre_db.get_filtered_book(book_id) + book = calibre_db.get_filtered_book(book_id, True) book_read_status = getattr(book, 'custom_column_' + str(config.config_read_column)) if len(book_read_status): if read_status is None: