Match identity server registration to the IS r0.3.0 spec

The returned field is `token` for the spec, but we somehow got through with `access_token` on Sydent.
pull/21833/head
Travis Ralston 2019-11-07 15:09:23 -07:00
parent 3645e4a822
commit cf80cb559e
1 changed files with 3 additions and 1 deletions

View File

@ -183,8 +183,10 @@ export default class IdentityAuthClient {
async registerForToken(check=true) {
try {
const hsOpenIdToken = await MatrixClientPeg.get().getOpenIdToken();
const { access_token: identityAccessToken } =
// XXX: The spec is `token`, but we used `access_token` for a Sydent release.
const { access_token, token } =
await this._matrixClient.registerWithIdentityServer(hsOpenIdToken);
let identityAccessToken = token ? token : access_token;
if (check) await this._checkToken(identityAccessToken);
return identityAccessToken;
} catch (e) {