This commit is contained in:
Tyler Leonhardt
2021-05-27 16:45:59 -07:00
parent c1448f3161
commit e0c8a76b7a
2 changed files with 3 additions and 3 deletions

View File

@@ -198,7 +198,7 @@ export class GitHubAuthenticationProvider implements vscode.AuthenticationProvid
*/
this.telemetryReporter?.sendTelemetryEvent('login');
const token = await this._githubServer.login(scopes.sort().join(' '));
const token = await this._githubServer.login(scopes.join(' '));
this.afterTokenLoad(token);
const session = await this.tokenToSession(token, scopes);
await this.setToken(session);