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