Handle additional exceptions when fetching cover images

This commit is contained in:
th3r00t
2021-07-24 01:22:35 -04:00
parent 7f6950273f
commit 4389870b85

View File

@@ -285,7 +285,7 @@ class Catalogue:
try: try:
cover = book_zip.read(cover.name) cover = book_zip.read(cover.name)
return cover return cover
except KeyError: except Error as e:
return False return False
def compare_shelf_current(self): def compare_shelf_current(self):