1
0
Fork 0

Fixed problem with timestamps in Safari-Browsers

main
Kim Huebel 4 years ago
parent bffbf8ee6e
commit 490977c3db

@ -45,7 +45,7 @@ function getTimezone() {
function getLocaltimeFromTimestamp(timestamp) {
logIt(timestamp);
if (useClientTimezone) {
var localtime = new Date(timestamp + "Z");
var localtime = new Date(timestamp.replace(/-/g, "/") + " GMT");
return localtime.toLocaleString();
} else {
return timestamp;

Loading…
Cancel
Save