mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-27 12:08:32 +03:00
Merge pull request #2761 from turt2live/patch-1
Fix templating error with unban permission message
This commit is contained in:
commit
e9f7677170
1 changed files with 1 additions and 1 deletions
|
@ -319,7 +319,7 @@ def _is_membership_change_allowed(event, auth_events):
|
|||
# TODO (erikj): Implement kicks.
|
||||
if target_banned and user_level < ban_level:
|
||||
raise AuthError(
|
||||
403, "You cannot unban user &s." % (target_user_id,)
|
||||
403, "You cannot unban user %s." % (target_user_id,)
|
||||
)
|
||||
elif target_user_id != event.user_id:
|
||||
kick_level = _get_named_level(auth_events, "kick", 50)
|
||||
|
|
Loading…
Reference in a new issue