diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2025-05-07 13:30:34 -0400 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2025-05-07 13:30:34 -0400 |
| commit | 6ec295b4615a863c9fc055e1c59216a3c598568f (patch) | |
| tree | e3cd7e3348a904783f6f65d37542460a72eecb2c /packages/frontend/src/boot | |
| parent | merge: Show all files for Drive Cleaner (!982) (diff) | |
| download | sharkey-6ec295b4615a863c9fc055e1c59216a3c598568f.tar.gz sharkey-6ec295b4615a863c9fc055e1c59216a3c598568f.tar.bz2 sharkey-6ec295b4615a863c9fc055e1c59216a3c598568f.zip | |
check notification dot preference from prefer instead of store (resolves #1048)
Diffstat (limited to 'packages/frontend/src/boot')
| -rw-r--r-- | packages/frontend/src/boot/main-boot.ts | 2 |
1 files changed, 1 insertions, 1 deletions
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); } } |