Skip to content

Commit 68ddc43

Browse files
authored
cannot access teams feature (#4774)
Fixes #4770
1 parent 7a364d9 commit 68ddc43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/github/credentials.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ export class CredentialStore implements vscode.Disposable {
315315

316316
let usedScopes: string[];
317317

318-
if (getAuthSessionOptions.createIfNone && !getAuthSessionOptions.forceNewSession) {
318+
if (getAuthSessionOptions.createIfNone && !getAuthSessionOptions.forceNewSession && (scopes.length === SCOPES.length)) {
319319
const silent = getAuthSessionOptions.silent;
320320
getAuthSessionOptions.createIfNone = false;
321321
getAuthSessionOptions.silent = true;
@@ -327,7 +327,7 @@ export class CredentialStore implements vscode.Disposable {
327327
session = await vscode.authentication.getSession(authProviderId, scopes, getAuthSessionOptions);
328328
usedScopes = scopes;
329329
}
330-
} else if (getAuthSessionOptions.forceNewSession) {
330+
} else if (getAuthSessionOptions.forceNewSession || scopes.length === SCOPES_WITH_ADDITIONAL.length) {
331331
session = await vscode.authentication.getSession(authProviderId, scopes, getAuthSessionOptions);
332332
usedScopes = scopes;
333333
} else {

0 commit comments

Comments
 (0)