diff options
author | Mango0x45 <thomasvoss@live.com> | 2021-02-06 17:14:57 +0100 |
---|---|---|
committer | Mango0x45 <thomasvoss@live.com> | 2021-02-06 17:14:57 +0100 |
commit | 0600897369b08786aa737c389c9fa76289b3d961 (patch) | |
tree | 846d5d5e3bf8101f820e3ad89a0df5a0a00888aa | |
parent | 0812963d3d98ddeae86802559100f9a16d437df8 (diff) |
Fix milliseconds bbug
-rw-r--r-- | main.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -29,7 +29,7 @@ function time_format(t) { const h = ~~(t / 3600); const m = ~~((t % 3600) / 60); - const s = ~~t % 60; + const s = t % 60; let ret = ""; if (h > 0) |