www

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

commit d86b622c0a99037bceef382c0ec43b64c52ef9e4
parent 75bf69526c081a424549dbb3aa3a768887750c4f
Author: Dan Stillman <dstillman@zotero.org>
Date:   Sun, 13 Mar 2016 20:27:18 -0400

More daylight saving time

Diffstat:
Mchrome/content/zotero/xpcom/storage/webdav.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chrome/content/zotero/xpcom/storage/webdav.js b/chrome/content/zotero/xpcom/storage/webdav.js @@ -1072,7 +1072,7 @@ Zotero.Sync.Storage.Mode.WebDAV.prototype = { response, ".//D:getlastmodified", { D: 'DAV:' } ); lastModified = Zotero.Date.strToISO(lastModified); - lastModified = Zotero.Date.sqlToDate(lastModified); + lastModified = Zotero.Date.sqlToDate(lastModified, true); // Delete files older than a day before last sync time var days = (lastSyncDate - lastModified) / 1000 / 60 / 60 / 24;