1
0

In main.js added a call to updateStatus() before starting an interval.

This commit is contained in:
Alexander Andreev 2023-10-07 21:30:19 +04:00
parent eba2c7d18f
commit 4a4c228984
Signed by: Arav
GPG Key ID: D22A817D95815393

View File

@ -70,6 +70,7 @@ async function interval() {
} }
} }
updateStatus().then(r => [cursong_duration_msec, cursong_startat] = r);
update_interval_id = setInterval(interval, 1000); update_interval_id = setInterval(interval, 1000);