From 82150dff9739374d506415df2f611726b7ad07e3 Mon Sep 17 00:00:00 2001 From: notplants Date: Mon, 9 May 2022 11:24:58 +0200 Subject: [PATCH] Fix timezones --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 1f6bfa7..7defd18 100644 --- a/index.html +++ b/index.html @@ -62,7 +62,7 @@ } function getTime(zone) { - var time = moment.tz(moment(), zone).format('H:mm A'); + var time = moment().tz(zone).format('H:mm A'); return time; }