Feature: added silent song notification setting (#1129)

* feat: added silent song notification
This commit is contained in:
Gabriele Mancini 2025-09-18 06:06:59 +02:00 committed by GitHub
parent 1d46cd5ff9
commit 6abdbd2f3e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -114,6 +114,7 @@ export const useScrobble = () => {
new Notification(`${currentSong.name}`, { new Notification(`${currentSong.name}`, {
body: `${artists}\n${currentSong.album}`, body: `${artists}\n${currentSong.album}`,
icon: currentSong.imageUrl || undefined, icon: currentSong.imageUrl || undefined,
silent: true,
}); });
} }
}, 1000); }, 1000);