From eb1b1ba22fc937605fa69c7e62b8aa53ee4d43e0 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sat, 6 Jul 2019 21:26:35 +0200 Subject: [PATCH] fix utc timestamps --- htdocs/openwebrx.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htdocs/openwebrx.js b/htdocs/openwebrx.js index 66a0045..5103c85 100644 --- a/htdocs/openwebrx.js +++ b/htdocs/openwebrx.js @@ -1252,7 +1252,7 @@ function on_ws_recv(evt) var pad = function(i) { return ('' + i).padStart(2, "0"); } $b.append($( '' + - '' + pad(t.getHours()) + pad(t.getMinutes()) + pad(t.getSeconds()) + '' + + '' + pad(t.getUTCHours()) + pad(t.getUTCMinutes()) + pad(t.getUTCSeconds()) + '' + '' + msg['db'] + '' + '' + msg['dt'] + '' + '' + msg['freq'] + '' +