mirror of
https://github.com/ha7ilm/openwebrx.git
synced 2026-01-27 18:44:19 +01:00
fix utc timestamps
This commit is contained in:
parent
d8a7dfbdbd
commit
eb1b1ba22f
|
|
@ -1252,7 +1252,7 @@ function on_ws_recv(evt)
|
|||
var pad = function(i) { return ('' + i).padStart(2, "0"); }
|
||||
$b.append($(
|
||||
'<tr>' +
|
||||
'<td>' + pad(t.getHours()) + pad(t.getMinutes()) + pad(t.getSeconds()) + '</td>' +
|
||||
'<td>' + pad(t.getUTCHours()) + pad(t.getUTCMinutes()) + pad(t.getUTCSeconds()) + '</td>' +
|
||||
'<td>' + msg['db'] + '</td>' +
|
||||
'<td>' + msg['dt'] + '</td>' +
|
||||
'<td>' + msg['freq'] + '</td>' +
|
||||
|
|
|
|||
Loading…
Reference in a new issue