From 6abdbd2f3ee17a68684652b5f24adab2b059c5c0 Mon Sep 17 00:00:00 2001 From: Gabriele Mancini Date: Thu, 18 Sep 2025 06:06:59 +0200 Subject: [PATCH] Feature: added silent song notification setting (#1129) * feat: added silent song notification --- src/renderer/features/player/hooks/use-scrobble.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/renderer/features/player/hooks/use-scrobble.ts b/src/renderer/features/player/hooks/use-scrobble.ts index f4fbadb3..04dbb86d 100644 --- a/src/renderer/features/player/hooks/use-scrobble.ts +++ b/src/renderer/features/player/hooks/use-scrobble.ts @@ -114,6 +114,7 @@ export const useScrobble = () => { new Notification(`${currentSong.name}`, { body: `${artists}\n${currentSong.album}`, icon: currentSong.imageUrl || undefined, + silent: true, }); } }, 1000);