From 82b53fee8785bbff3b9c16150001a9f65953d6f1 Mon Sep 17 00:00:00 2001 From: Martynas Bagdonas Date: Tue, 13 Sep 2022 16:38:17 +0300 Subject: [PATCH] Fix PDF reader sometimes showing UTC time and sometimes local (cherry picked from commit c13d17b5e6ca496491e926211c0e1ea7aef072ae) --- chrome/content/zotero/xpcom/annotations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chrome/content/zotero/xpcom/annotations.js b/chrome/content/zotero/xpcom/annotations.js index 329a81471b..366f436034 100644 --- a/chrome/content/zotero/xpcom/annotations.js +++ b/chrome/content/zotero/xpcom/annotations.js @@ -177,7 +177,7 @@ Zotero.Annotations = new function () { o.tags = tags; } - o.dateModified = item.dateModified; + o.dateModified = Zotero.Date.sqlToISO8601(item.dateModified); return o; };