Fix templating error with unban permission message
Fixes https://github.com/matrix-org/synapse/issues/2759 Signed-off-by: Travis Ralston <travpc@gmail.com>
This commit is contained in:
parent
e6b24663e4
commit
eccfc8e928
|
@ -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 New Issue