diff --git a/chrome/content/zotero/xpcom/storage/webdav.js b/chrome/content/zotero/xpcom/storage/webdav.js index ee0c5578c6..756934c23f 100644 --- a/chrome/content/zotero/xpcom/storage/webdav.js +++ b/chrome/content/zotero/xpcom/storage/webdav.js @@ -1002,6 +1002,10 @@ Zotero.Sync.Storage.WebDAV = (function () { var lastModified = req.getResponseHeader("Last-Modified"); var date = new Date(lastModified); + // TEMP + if (date.getTime() == 0) { + Zotero.debug(lastModified); + } Zotero.debug("Last successful WebDAV sync was " + date); return Zotero.Date.toUnixTimestamp(date); })