diff --git a/chrome/content/zotero/xpcom/storage/storageLocal.js b/chrome/content/zotero/xpcom/storage/storageLocal.js index 30a7b4b55b..1f6dc711c6 100644 --- a/chrome/content/zotero/xpcom/storage/storageLocal.js +++ b/chrome/content/zotero/xpcom/storage/storageLocal.js @@ -793,7 +793,12 @@ Zotero.Sync.Storage.Local = { } catch (e) { Zotero.debug(zipFile.leafName + " is not a valid ZIP file", 2); - zipReader.close(); + try { + zipReader.close(); + } + catch (e) { + Zotero.debug(e, 2); + } zipReader = null Cu.forceGC();