commit 2c424c2b583d3a81bbe2deb6523cd807570c603d parent 79d55a32ce931528bbac9c7525bad869209ac26b Author: Dan Stillman <dstillman@zotero.org> Date: Sat, 10 Aug 2013 00:00:05 -0400 Take out unnecessary <Fx23 test Diffstat:
| M | chrome/content/zotero/xpcom/storage.js | | | 7 | +++---- |
1 file changed, 3 insertions(+), 4 deletions(-)
diff --git a/chrome/content/zotero/xpcom/storage.js b/chrome/content/zotero/xpcom/storage.js @@ -811,12 +811,11 @@ Zotero.Sync.Storage = new function () { var numItems = items.length; 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 + // On Windows, OS.File returns the access time instead of the + // modification time until Firefox 25 // (https://bugzilla.mozilla.org/show_bug.cgi?id=899436), // so use the old code - if (Zotero.platformMajorVersion < 23 - || (Zotero.isWin && Zotero.platformMajorVersion < 25)) { + if (Zotero.isWin && Zotero.platformMajorVersion < 25) { Zotero.debug("Performing synchronous file update check"); for each(var item in items) {