forked from MirrorHub/synapse
fix thinko on 3pid whitelisting
This commit is contained in:
parent
25e2456ee7
commit
9a72b70630
1 changed files with 2 additions and 2 deletions
|
@ -368,8 +368,8 @@ class RegisterRestServlet(RestServlet):
|
|||
if auth_result:
|
||||
for login_type in [LoginType.EMAIL_IDENTITY, LoginType.MSISDN]:
|
||||
if login_type in auth_result:
|
||||
medium = auth_result[login_type].threepid['medium']
|
||||
address = auth_result[login_type].threepid['address']
|
||||
medium = auth_result[login_type]['medium']
|
||||
address = auth_result[login_type]['address']
|
||||
|
||||
if not check_3pid_allowed(self.hs, medium, address):
|
||||
raise SynapseError(
|
||||
|
|
Loading…
Reference in a new issue