about summary refs log tree commit diff
path: root/app/javascript/flavours/glitch/reducers/push_notifications.js
diff options
context:
space:
mode:
authorcwm <chriswmartin@protonmail.com>2017-12-30 11:45:01 -0600
committercwm <chriswmartin@protonmail.com>2017-12-30 11:45:01 -0600
commit0dce26b82b69f08ba559c08befe941f8839f3ce7 (patch)
treef547df18feb840352b30cb464e02a18069e828ac /app/javascript/flavours/glitch/reducers/push_notifications.js
parent65c87ca0ae20eb5dc62751047bda3e8b11e37ce0 (diff)
web push updates (tootsuite PRs #5879, #5941, #6047)
Diffstat (limited to 'app/javascript/flavours/glitch/reducers/push_notifications.js')
-rw-r--r--app/javascript/flavours/glitch/reducers/push_notifications.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/reducers/push_notifications.js b/app/javascript/flavours/glitch/reducers/push_notifications.js
index f0a800d23..4eba2a5e8 100644
--- a/app/javascript/flavours/glitch/reducers/push_notifications.js
+++ b/app/javascript/flavours/glitch/reducers/push_notifications.js
@@ -1,5 +1,5 @@
 import { STORE_HYDRATE } from 'flavours/glitch/actions/store';
-import { SET_BROWSER_SUPPORT, SET_SUBSCRIPTION, CLEAR_SUBSCRIPTION, ALERTS_CHANGE } from 'flavours/glitch/actions/push_notifications';
+import { SET_BROWSER_SUPPORT, SET_SUBSCRIPTION, CLEAR_SUBSCRIPTION, SET_ALERTS } from 'flavours/glitch/actions/push_notifications';
 import Immutable from 'immutable';
 
 const initialState = Immutable.Map({
@@ -43,7 +43,7 @@ export default function push_subscriptions(state = initialState, action) {
     return state.set('browserSupport', action.value);
   case CLEAR_SUBSCRIPTION:
     return initialState;
-  case ALERTS_CHANGE:
+  case SET_ALERTS:
     return state.setIn(action.key, action.value);
   default:
     return state;