Fix "destFile is not defined" file sync error

This commit is contained in:
Dan Stillman 2017-07-11 04:37:23 -04:00
parent 375b4341a6
commit 18f3c2cfb0

View File

@ -911,7 +911,7 @@ Zotero.Sync.Storage.Local = {
// For advertising junk files, ignore a bug on Windows where
// destFile.create() works but zipReader.extract() doesn't
// when the path length is close to 255.
if (destFile.leafName.match(/[a-zA-Z0-9+=]{130,}/)) {
if (OS.Path.basename(destPath).match(/[a-zA-Z0-9+=]{130,}/)) {
var msg = "Ignoring error extracting '" + destPath + "'";
Zotero.debug(msg, 2);
Zotero.debug(e, 2);