From 83b29b7e17bba708b2836dab9eebaa7ccfe76caf Mon Sep 17 00:00:00 2001 From: Izan Gil <66965250+SrIzan10@users.noreply.github.com> Date: Sat, 31 May 2025 18:15:30 +0200 Subject: [PATCH] fix: title not changing on next song --- src/lib/components/app/daemon.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/components/app/daemon.svelte b/src/lib/components/app/daemon.svelte index 45e76f3..bac663a 100644 --- a/src/lib/components/app/daemon.svelte +++ b/src/lib/components/app/daemon.svelte @@ -195,6 +195,7 @@ appState.currentSong = appState.songQueue[0]; appState.duration = appState.currentSong.duration; setMediaSession(); + document.title = `${appState.currentSong.title} - ${appState.currentSong.artists}`; } else { appState.error = 'Failed to load songs.'; }