[Glitch] Fix error when muting users from Web UI

Port 32319187ee to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
th-new
Claire 2023-11-21 12:16:16 +01:00
parent e94fecdcc8
commit 70652e49eb
1 changed files with 1 additions and 1 deletions

View File

@ -323,7 +323,7 @@ export default function notifications(state = initialState, action) {
case blockAccountSuccess.type: case blockAccountSuccess.type:
return filterNotifications(state, [action.payload.relationship.id]); return filterNotifications(state, [action.payload.relationship.id]);
case muteAccountSuccess.type: case muteAccountSuccess.type:
return action.relationship.muting_notifications ? filterNotifications(state, [action.payload.relationship.id]) : state; return action.payload.relationship.muting_notifications ? filterNotifications(state, [action.payload.relationship.id]) : state;
case blockDomainSuccess.type: case blockDomainSuccess.type:
return filterNotifications(state, action.payload.accounts); return filterNotifications(state, action.payload.accounts);
case authorizeFollowRequestSuccess.type: case authorizeFollowRequestSuccess.type: