Lowercase auth provider ids, fixes #91538

This commit is contained in:
Rachel Macfarlane
2020-02-26 15:06:53 -08:00
parent 2e16c59fde
commit 7a13028b70
2 changed files with 2 additions and 2 deletions

View File

@@ -16,7 +16,7 @@ export async function activate(context: vscode.ExtensionContext) {
await loginService.initialize();
vscode.authentication.registerAuthenticationProvider({
id: 'GitHub',
id: 'github',
displayName: 'GitHub',
onDidChangeSessions: onDidChangeSessions.event,
getSessions: () => Promise.resolve(loginService.sessions),