Skip to content

Commit

Permalink
Merge pull request #13337 from nextcloud/backport/13335/stable30
Browse files Browse the repository at this point in the history
[stable30] fix(ban): do not try to remove a banned user (handled by backend)
  • Loading branch information
nickvergessen authored Sep 18, 2024
2 parents d407ebf + 8f9bf53 commit 18d2d91
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/store/participantsStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -595,8 +595,9 @@ const actions = {
showError(t('spreed', 'Error while banning the participant'))
throw error
}
} else {
await removeAttendeeFromConversation(token, attendeeId)
}
await removeAttendeeFromConversation(token, attendeeId)
commit('deleteParticipant', { token, attendeeId })
},

Expand Down

0 comments on commit 18d2d91

Please sign in to comment.