diff options
author | ThibG <thib@sitedethib.com> | 2018-05-21 19:20:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-21 19:20:17 +0200 |
commit | cc230e5d5715a5feafb9c92aa387dd78e40d193e (patch) | |
tree | ad5d46b43f09d2a1f38b77919f9dd182345b8a7c /app/javascript/flavours/glitch/actions | |
parent | 162f1863a74efdbd2912fef671338c545721742c (diff) | |
parent | d0b2f71501c778a4b1ef8bc37c6020f70b65a67e (diff) |
Merge pull request #495 from ThibG/glitch-soc/fixes/port-upstream-fixes
Port various WebUI fixes from upstream
Diffstat (limited to 'app/javascript/flavours/glitch/actions')
-rw-r--r-- | app/javascript/flavours/glitch/actions/push_notifications/registerer.js | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/app/javascript/flavours/glitch/actions/push_notifications/registerer.js b/app/javascript/flavours/glitch/actions/push_notifications/registerer.js index 5ad11f73f..91f442415 100644 --- a/app/javascript/flavours/glitch/actions/push_notifications/registerer.js +++ b/app/javascript/flavours/glitch/actions/push_notifications/registerer.js @@ -56,13 +56,6 @@ export function register () { dispatch(setBrowserSupport(supportsPushNotifications)); const me = getState().getIn(['meta', 'me']); - if (me && !pushNotificationsSetting.get(me)) { - const alerts = getState().getIn(['push_notifications', 'alerts']); - if (alerts) { - pushNotificationsSetting.set(me, { alerts: alerts }); - } - } - if (supportsPushNotifications) { if (!getApplicationServerKey()) { console.error('The VAPID public key is not set. You will not be able to receive Web Push Notifications.'); |