From c60cb6f76b1669c36661ba8dfa3f6acbe3c00c39 Mon Sep 17 00:00:00 2001 From: Dan Stillman Date: Tue, 9 Mar 2010 16:00:08 +0000 Subject: [PATCH] Fix another place where incorrect mod time could be read in --- chrome/content/zotero/xpcom/storage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/storage.js b/chrome/content/zotero/xpcom/storage.js index 520144eaf..239089f61 100644 --- a/chrome/content/zotero/xpcom/storage.js +++ b/chrome/content/zotero/xpcom/storage.js @@ -465,7 +465,7 @@ Zotero.Sync.Storage = new function () { continue; } - var fmtime = file.lastModifiedTime; + var fmtime = item.attachmentModificationTime; //Zotero.debug("Stored mtime is " + attachmentData[item.id].mtime); //Zotero.debug("File mtime is " + fmtime);