From 6ec295b4615a863c9fc055e1c59216a3c598568f Mon Sep 17 00:00:00 2001 From: Hazelnoot Date: Wed, 7 May 2025 13:30:34 -0400 Subject: [PATCH] check notification dot preference from prefer instead of store (resolves #1048) --- packages/frontend/src/boot/main-boot.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/frontend/src/boot/main-boot.ts b/packages/frontend/src/boot/main-boot.ts index c5bd393fa5..0ce71978f2 100644 --- a/packages/frontend/src/boot/main-boot.ts +++ b/packages/frontend/src/boot/main-boot.ts @@ -349,7 +349,7 @@ export async function mainBoot() { } function attemptShowNotificationDot() { - if (store.s.enableFaviconNotificationDot) { + if (prefer.s.enableFaviconNotificationDot) { setFavIconDot(true); } }