mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-14 21:23:50 +01:00
Remove semicolon.
This commit is contained in:
parent
b6ee0585bd
commit
ddef5ea126
1 changed files with 1 additions and 1 deletions
|
@ -413,7 +413,7 @@ class RoomMembershipRestServlet(ClientV1RestServlet):
|
|||
raise SynapseError(400, "Missing user_id key.")
|
||||
state_key = content["user_id"]
|
||||
# make sure it looks like a user ID; it'll throw if it's invalid.
|
||||
UserID.from_string(state_key);
|
||||
UserID.from_string(state_key)
|
||||
|
||||
if membership_action == "kick":
|
||||
membership_action = "leave"
|
||||
|
|
Loading…
Reference in a new issue