Fix web UI not removing notifications after block (#10108)

Regression from #7311
th-downstream
Eugen Rochko 6 years ago committed by Thibaut Girka
parent 6f471916f5
commit df01d5181e

@ -207,6 +207,7 @@ export default function notifications(state = initialState, action) {
case NOTIFICATIONS_EXPAND_SUCCESS:
return expandNormalizedNotifications(state, action.notifications, action.next);
case ACCOUNT_BLOCK_SUCCESS:
return filterNotifications(state, action.relationship);
case ACCOUNT_MUTE_SUCCESS:
return action.relationship.muting_notifications ? filterNotifications(state, action.relationship) : state;
case NOTIFICATIONS_CLEAR:

Loading…
Cancel
Save