0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-01 08:58:19 +02:00

Merge pull request #1150 from Rugvip/state_key

api/auth: fix for not being allowed to set your own state_key
This commit is contained in:
Erik Johnston 2016-10-11 11:19:55 +01:00 committed by GitHub
commit a940618c94

View file

@ -1002,16 +1002,6 @@ class Auth(object):
403,
"You are not allowed to set others state"
)
else:
sender_domain = UserID.from_string(
event.user_id
).domain
if sender_domain != event.state_key:
raise AuthError(
403,
"You are not allowed to set others state"
)
return True