forked from MirrorHub/synapse
Use UserId to create FQ user id
This commit is contained in:
parent
625e13bfde
commit
e52f4dc599
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@ class LoginRestServlet(ClientV1RestServlet):
|
|||
for child in root[0]:
|
||||
if child.tag.endswith("user"):
|
||||
user = child.text
|
||||
user_id = "@%s:%s" % (user, self.servername)
|
||||
user_id = UserID.create(user, self.hs.hostname).to_string()
|
||||
auth_handler = self.handlers.auth_handler
|
||||
user_exists = yield auth_handler.does_user_exist(user_id)
|
||||
if user_exists:
|
||||
|
|
Loading…
Reference in a new issue