From 0918f1b74a3ddfc9dd36c62bed7862a10229f59a Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 21 Oct 2024 13:41:12 +0530 Subject: [PATCH] ... --- src/calibre/db/cache.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/calibre/db/cache.py b/src/calibre/db/cache.py index 4ac9ebc7c5..5c3b188b79 100644 --- a/src/calibre/db/cache.py +++ b/src/calibre/db/cache.py @@ -2534,7 +2534,7 @@ class Cache: lm = table.link_map vm = table.id_map ans = {vm.get(fid):v for fid,v in lm.items() if v} - ans.pop(None) + ans.pop(None, None) return ans @read_api