mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-22 19:35:14 +01:00
Handle the catalog thumbnail cache becoming larger than 2GB
This commit is contained in:
parent
8a5a7a5975
commit
dfcadabf14
1 changed files with 1 additions and 1 deletions
|
|
@ -3879,7 +3879,7 @@ def generateThumbnail(self, title, image_dir, thumb_file):
|
|||
|
||||
def open_archive(mode='r'):
|
||||
try:
|
||||
return ZipFile(self.__archive_path, mode=mode)
|
||||
return ZipFile(self.__archive_path, mode=mode, allowZip64=True)
|
||||
except:
|
||||
# Happens on windows if the file is opened by another
|
||||
# process
|
||||
|
|
|
|||
Loading…
Reference in a new issue