Extra file sync debugging

This commit is contained in:
Dan Stillman 2013-04-16 01:10:42 -04:00
parent c185ffc728
commit b82a28e708

View file

@ -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);
})