Fix timezones

This commit is contained in:
notplants 2022-05-09 11:24:58 +02:00
parent c75d85f84f
commit 82150dff97
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@
} }
function getTime(zone) { function getTime(zone) {
var time = moment.tz(moment(), zone).format('H:mm A'); var time = moment().tz(zone).format('H:mm A');
return time; return time;
} }