commit cba2c0c58b4701cd2a8a63e9b8f31cf6259c7fa2
parent 69ab4b0b1d5038f4361656e157612b90032d9627
Author: Dan Stillman <dstillman@zotero.org>
Date: Tue, 29 Nov 2016 14:32:23 -0500
Fix display of extended character in file sync debug output
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/chrome/content/zotero/xpcom/storage/storageLocal.js b/chrome/content/zotero/xpcom/storage/storageLocal.js
@@ -413,7 +413,7 @@ Zotero.Sync.Storage.Local = {
else if (Math.floor(mtime / 1000) * 1000 == fmtime
|| Math.floor(fmtime / 1000) * 1000 == mtime) {
Zotero.debug(`File mod times for ${libraryKey} are within one-second precision `
- + "(" + fmtime + " ≅ " + mtime + ") -- skipping");
+ + "(" + fmtime + " \u2248 " + mtime + ") -- skipping");
}
// Allow timestamp to be exactly one hour off to get around time zone issues
// -- there may be a proper way to fix this