1
0
Fork 0
mirror of https://github.com/Kunsi/pretalx-plugin-broadcast-tools synced 2025-04-03 10:34:39 +00:00

Fix "X min remaining" for events longer than 59min

This commit is contained in:
Franzi 2025-03-09 21:27:25 +01:00
parent ade18a033e
commit a3435e518f
Signed by: kunsi
GPG key ID: 12E3D2136B818350

View file

@ -67,7 +67,7 @@ function update_room_info() {
} else {
diff = scheduled_end - now;
let diff_s = Math.floor(Math.floor(diff / 1000) % 60);
let diff_m = Math.floor(diff / 1000 / 60) % 60;
let diff_m = Math.floor(diff / 1000 / 60);
timeleft.innerHTML = diff_m + 'min ' + diff_s + 'sec';