Fix PDF reader sometimes showing UTC time and sometimes local

(cherry picked from commit c13d17b5e6)
This commit is contained in:
Martynas Bagdonas 2022-09-13 16:38:17 +03:00
parent 531f8fe24d
commit 82b53fee87

View file

@ -177,7 +177,7 @@ Zotero.Annotations = new function () {
o.tags = tags;
}
o.dateModified = item.dateModified;
o.dateModified = Zotero.Date.sqlToISO8601(item.dateModified);
return o;
};