diff --git a/app/javascript/mastodon/reducers/push_notifications.js b/app/javascript/mastodon/reducers/push_notifications.js index c48cfb705..5ff6660e8 100644 --- a/app/javascript/mastodon/reducers/push_notifications.js +++ b/app/javascript/mastodon/reducers/push_notifications.js @@ -11,6 +11,7 @@ const initialState = Immutable.Map({ reblog: false, mention: false, poll: false, + status: false, }), isSubscribed: false, browserSupport: false, diff --git a/app/javascript/mastodon/service_worker/web_push_locales.js b/app/javascript/mastodon/service_worker/web_push_locales.js index 1265f3cfa..fd96aabfb 100644 --- a/app/javascript/mastodon/service_worker/web_push_locales.js +++ b/app/javascript/mastodon/service_worker/web_push_locales.js @@ -19,6 +19,7 @@ filenames.forEach(filename => { 'notification.follow_request': full['notification.follow_request'] || '', 'notification.mention': full['notification.mention'] || '', 'notification.reblog': full['notification.reblog'] || '', + 'notification.status': full['notification.status'] || '', 'notification.poll': full['notification.poll'] || '', 'status.show_more': full['status.show_more'] || '',