File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -315,7 +315,7 @@ export class CredentialStore implements vscode.Disposable {
315
315
316
316
let usedScopes : string [ ] ;
317
317
318
- if ( getAuthSessionOptions . createIfNone && ! getAuthSessionOptions . forceNewSession ) {
318
+ if ( getAuthSessionOptions . createIfNone && ! getAuthSessionOptions . forceNewSession && ( scopes . length === SCOPES . length ) ) {
319
319
const silent = getAuthSessionOptions . silent ;
320
320
getAuthSessionOptions . createIfNone = false ;
321
321
getAuthSessionOptions . silent = true ;
@@ -327,7 +327,7 @@ export class CredentialStore implements vscode.Disposable {
327
327
session = await vscode . authentication . getSession ( authProviderId , scopes , getAuthSessionOptions ) ;
328
328
usedScopes = scopes ;
329
329
}
330
- } else if ( getAuthSessionOptions . forceNewSession ) {
330
+ } else if ( getAuthSessionOptions . forceNewSession || scopes . length === SCOPES_WITH_ADDITIONAL . length ) {
331
331
session = await vscode . authentication . getSession ( authProviderId , scopes , getAuthSessionOptions ) ;
332
332
usedScopes = scopes ;
333
333
} else {
You can’t perform that action at this time.
0 commit comments