diff --git a/fluxer_app/src/stores/NotificationStore.tsx b/fluxer_app/src/stores/NotificationStore.tsx index 729892c87..95c17f2d6 100644 --- a/fluxer_app/src/stores/NotificationStore.tsx +++ b/fluxer_app/src/stores/NotificationStore.tsx @@ -430,7 +430,9 @@ class NotificationStore { try { const granted = await NotificationUtils.isGranted(); runInAction(() => { - this.browserNotificationsEnabled = granted; + if (!granted) { + this.browserNotificationsEnabled = false; + } }); if (granted) { if (shouldManagePushSubscriptions()) {