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) { function getLocaltimeFromTimestamp(timestamp) {
logIt(timestamp); logIt(timestamp);
if (useClientTimezone) { if (useClientTimezone) {
var localtime = new Date(timestamp + "Z"); var localtime = new Date(timestamp.replace(/-/g, "/") + " GMT");
return localtime.toLocaleString(); return localtime.toLocaleString();
} else { } else {
return timestamp; return timestamp;

Loading…
Cancel
Save