From 6c0be3426bc5942ee04a0a27af97ce94d0a10ed5 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Thu, 5 Sep 2013 16:36:15 -0400 Subject: [PATCH] Use async storage mtime checking in Fx24 on Windows https://bugzilla.mozilla.org/show_bug.cgi?id=899436 was backported to 24 --- chrome/content/zotero/xpcom/storage.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chrome/content/zotero/xpcom/storage.js b/chrome/content/zotero/xpcom/storage.js index f393644fc6..c49ef8bfb9 100644 --- a/chrome/content/zotero/xpcom/storage.js +++ b/chrome/content/zotero/xpcom/storage.js @@ -812,11 +812,11 @@ Zotero.Sync.Storage = new function () { var updatedStates = {}; // OS.File didn't work reliably before Firefox 23, and on Windows it returns - // the access time instead of the modification time until Firefox 25 + // the access time instead of the modification time until Firefox 24 // (https://bugzilla.mozilla.org/show_bug.cgi?id=899436), // so use the old code if (Zotero.platformMajorVersion < 23 - || (Zotero.isWin && Zotero.platformMajorVersion < 25)) { + || (Zotero.isWin && Zotero.platformMajorVersion < 24)) { Zotero.debug("Performing synchronous file update check"); for each(var item in items) {