www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README | LICENSE

commit 6c0be3426bc5942ee04a0a27af97ce94d0a10ed5
parent 840790926bddd0ee8a94271ae976d92ae192eb1f
Author: Dan Stillman <dstillman@zotero.org>
Date:   Thu,  5 Sep 2013 16:36:15 -0400

Use async storage mtime checking in Fx24 on Windows

https://bugzilla.mozilla.org/show_bug.cgi?id=899436 was backported to 24

Diffstat:
Mchrome/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 @@ -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) {