From defe87debb6f30448ab6a19537b1947235ac27c3 Mon Sep 17 00:00:00 2001 From: lostb1t Date: Sun, 16 Mar 2025 17:19:48 +0100 Subject: [PATCH] fix: disable badge count for sessions --- hooks/useSessions.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/useSessions.ts b/hooks/useSessions.ts index 738131fe..c0337164 100644 --- a/hooks/useSessions.ts +++ b/hooks/useSessions.ts @@ -29,7 +29,7 @@ export const useSessions = ({ refetchInterval = 5 * 1000, activeWithinSeconds = .filter((s) => s.NowPlayingItem) .sort((a, b) => (b.NowPlayingItem?.Name ?? "").localeCompare(a.NowPlayingItem?.Name ?? "")); - Notifications.setBadgeCountAsync(result.length); + // Notifications.setBadgeCountAsync(result.length); return result }, refetchInterval: refetchInterval,