logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 7cfd5b680a64e2dcdc375274d9619e8ab2e2bb9f
parent: c468446f4c52b089cfe1507d2ca79f36f39614ef
Author: Eugen Rochko <eugen@zeonfederated.com>
Date:   Tue, 17 Jan 2017 20:37:54 +0100

Fix forgotten change of settings

Diffstat:

Mapp/assets/javascripts/components/actions/notifications.jsx4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app/assets/javascripts/components/actions/notifications.jsx b/app/assets/javascripts/components/actions/notifications.jsx @@ -24,8 +24,8 @@ const fetchRelatedRelationships = (dispatch, notifications) => { export function updateNotifications(notification, intlMessages, intlLocale) { return (dispatch, getState) => { - const showAlert = getState().getIn(['notifications', 'settings', 'alerts', notification.type], true); - const playSound = getState().getIn(['notifications', 'settings', 'sounds', notification.type], true); + const showAlert = getState().getIn(['settings', 'notifications', 'alerts', notification.type], true); + const playSound = getState().getIn(['settings', 'notifications', 'sounds', notification.type], true); dispatch({ type: NOTIFICATIONS_UPDATE,