Fix PDF reader sometimes showing UTC time and sometimes local

This commit is contained in:
Martynas Bagdonas 2022-09-13 16:38:17 +03:00
parent eb255c5868
commit c13d17b5e6

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