about summary refs log tree commit diff
path: root/app/javascript/mastodon/actions/onboarding.js
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2020-10-15 16:24:47 +0200
committerGitHub <noreply@github.com>2020-10-15 16:24:47 +0200
commita69ca294738dbe22bacaf9f1fc5a551d99797b35 (patch)
tree6c1f3bd5c6ff54041031185574606d7846cd6b00 /app/javascript/mastodon/actions/onboarding.js
parentb4c4af18dcec04f0c8ad89b45ce3cad20ddfdc12 (diff)
Change how missing desktop notifications permission is displayed (#14985)
Add missing controls for new notification type
Diffstat (limited to 'app/javascript/mastodon/actions/onboarding.js')
-rw-r--r--app/javascript/mastodon/actions/onboarding.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/javascript/mastodon/actions/onboarding.js b/app/javascript/mastodon/actions/onboarding.js
index 90f1da7bd..42d8ea33f 100644
--- a/app/javascript/mastodon/actions/onboarding.js
+++ b/app/javascript/mastodon/actions/onboarding.js
@@ -14,6 +14,7 @@ export const closeOnboarding = () => dispatch => {
       dispatch(changeSetting(['notifications', 'alerts', 'reblog'], true));
       dispatch(changeSetting(['notifications', 'alerts', 'mention'], true));
       dispatch(changeSetting(['notifications', 'alerts', 'poll'], true));
+      dispatch(changeSetting(['notifications', 'alerts', 'status'], true));
       dispatch(saveSettings());
     }
   }));