Merge pull request #3602 from matrix-org/travis/fix-identity-register

Match identity server registration to the IS r0.3.0 spec
This commit is contained in:
Travis Ralston 2019-11-08 08:08:47 -07:00 committed by GitHub
commit 59dccb86ba
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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: accessToken, token } =
await this._matrixClient.registerWithIdentityServer(hsOpenIdToken);
const identityAccessToken = token ? token : accessToken;
if (check) await this._checkToken(identityAccessToken);
return identityAccessToken;
} catch (e) {