mirror of
https://github.com/element-hq/synapse.git
synced 2024-11-26 19:47:05 +03:00
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:
|
if auth_result:
|
||||||
for login_type in [LoginType.EMAIL_IDENTITY, LoginType.MSISDN]:
|
for login_type in [LoginType.EMAIL_IDENTITY, LoginType.MSISDN]:
|
||||||
if login_type in auth_result:
|
if login_type in auth_result:
|
||||||
medium = auth_result[login_type].threepid['medium']
|
medium = auth_result[login_type]['medium']
|
||||||
address = auth_result[login_type].threepid['address']
|
address = auth_result[login_type]['address']
|
||||||
|
|
||||||
if not check_3pid_allowed(self.hs, medium, address):
|
if not check_3pid_allowed(self.hs, medium, address):
|
||||||
raise SynapseError(
|
raise SynapseError(
|
||||||
|
|
Loading…
Reference in a new issue