Skip to content

Commit e4580ae

Browse files
Fixes redundant prompt when GitHub refreshes
1 parent 1b12e80 commit e4580ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plus/integrations/providers/github.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ export class GitHubIntegration extends GitHubIntegrationBase<HostingIntegrationI
293293
const authProvider = await this.authenticationService.get(this.authProvider.id);
294294
const session = await authProvider.getSession(this.authProviderDescriptor);
295295
if (session == null && this.maybeConnected) {
296-
void this.disconnect();
296+
void this.disconnect({ silent: true });
297297
} else {
298298
if (session?.accessToken !== this._session?.accessToken) {
299299
this._session = undefined;

0 commit comments

Comments
 (0)