Fix bug where playback would not pause when fetching the newest playqueue

This commit is contained in:
Neshura 2024-05-02 04:11:34 +02:00
parent d42c3202b5
commit 7958a00050
Signed by: Neshura
GPG key ID: B6983AAA6B9A7A6C

View file

@ -12,6 +12,7 @@
async function innerFetchQueue() {
loading = true;
playbackState.pause();
await queueState.getPlayQueue()
await new Promise(resolve => setTimeout(resolve, 100));
loading = false;