Skip to content

Commit d6bc983

Browse files
committed
Remove a stray toLowerCase()
1 parent aeec998 commit d6bc983

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commonActivate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export function commonActivate(context: vscode.ExtensionContext, view: ServerMan
9191
serverSessions.forEach(async (serverSession) => {
9292

9393
// Still logged in with the authentication provider?
94-
const scopes = [serverSession.serverName, serverSession.username.toLowerCase()];
94+
const scopes = [serverSession.serverName, serverSession.username];
9595
const account = getAccountFromParts(serverSession.serverName, serverSession.username);
9696
const session = await vscode.authentication.getSession(
9797
AUTHENTICATION_PROVIDER,

0 commit comments

Comments
 (0)