Fix "destFile is not defined" file sync error
This commit is contained in:
parent
375b4341a6
commit
18f3c2cfb0
|
@ -911,7 +911,7 @@ Zotero.Sync.Storage.Local = {
|
||||||
// For advertising junk files, ignore a bug on Windows where
|
// For advertising junk files, ignore a bug on Windows where
|
||||||
// destFile.create() works but zipReader.extract() doesn't
|
// destFile.create() works but zipReader.extract() doesn't
|
||||||
// when the path length is close to 255.
|
// 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 + "'";
|
var msg = "Ignoring error extracting '" + destPath + "'";
|
||||||
Zotero.debug(msg, 2);
|
Zotero.debug(msg, 2);
|
||||||
Zotero.debug(e, 2);
|
Zotero.debug(e, 2);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user