From 7958a00050225ab960cc2167cba32d8ca4c367d5 Mon Sep 17 00:00:00 2001 From: Neshura Date: Thu, 2 May 2024 04:11:34 +0200 Subject: [PATCH] Fix bug where playback would not pause when fetching the newest playqueue --- src/lib/components/custom/QueueFrame.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/components/custom/QueueFrame.svelte b/src/lib/components/custom/QueueFrame.svelte index d780db4..39d508a 100644 --- a/src/lib/components/custom/QueueFrame.svelte +++ b/src/lib/components/custom/QueueFrame.svelte @@ -12,6 +12,7 @@ async function innerFetchQueue() { loading = true; + playbackState.pause(); await queueState.getPlayQueue() await new Promise(resolve => setTimeout(resolve, 100)); loading = false;