Send the user ID matching the guest access token, since there is no Matrix API to discover what user ID an access token is for.

This commit is contained in:
David Baker 2016-03-07 17:13:56 +00:00
parent 80916e6884
commit 874fd43257
2 changed files with 7 additions and 2 deletions

View file

@ -534,7 +534,7 @@ class Auth(object):
)
access_token = request.args["access_token"][0]
user_info = yield self._get_user_by_access_token(access_token)
user_info = yield self.get_user_by_access_token(access_token)
user = user_info["user"]
token_id = user_info["token_id"]
is_guest = user_info["is_guest"]
@ -595,7 +595,7 @@ class Auth(object):
defer.returnValue(user_id)
@defer.inlineCallbacks
def _get_user_by_access_token(self, token):
def get_user_by_access_token(self, token):
""" Get a registered user's ID.
Args: