Skip to content

Commit 7a13028

Browse files
author
Rachel Macfarlane
committed
Lowercase auth provider ids, fixes microsoft#91538
1 parent 2e16c59 commit 7a13028

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

extensions/github-authentication/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export async function activate(context: vscode.ExtensionContext) {
1616
await loginService.initialize();
1717

1818
vscode.authentication.registerAuthenticationProvider({
19-
id: 'GitHub',
19+
id: 'github',
2020
displayName: 'GitHub',
2121
onDidChangeSessions: onDidChangeSessions.event,
2222
getSessions: () => Promise.resolve(loginService.sessions),

extensions/vscode-account/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export async function activate(context: vscode.ExtensionContext) {
1818
await loginService.initialize();
1919

2020
context.subscriptions.push(vscode.authentication.registerAuthenticationProvider({
21-
id: 'MSA',
21+
id: 'microsoft',
2222
displayName: 'Microsoft',
2323
onDidChangeSessions: onDidChangeSessions.event,
2424
getSessions: () => Promise.resolve(loginService.sessions),

0 commit comments

Comments
 (0)