Pull guest access token out of the auth session params, otherwise it will break if you open the email on a different device.

This commit is contained in:
David Baker 2016-02-01 16:33:19 +00:00
parent 2d3837bec7
commit d7ac861d3b

View File

@ -152,6 +152,7 @@ class RegisterRestServlet(RestServlet):
desired_username = params.get("username", None)
new_password = params.get("password", None)
guest_access_token = params.get("guest_access_token", None)
(user_id, token) = yield self.registration_handler.register(
localpart=desired_username,