We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff2a35c commit 5b7b9ceCopy full SHA for 5b7b9ce
src/plus/integrations/integrationService.ts
@@ -1010,9 +1010,9 @@ export class IntegrationService implements Disposable {
1010
return this.getMyPullRequestsCore(integrations);
1011
}
1012
1013
- isMaybeConnected(remote: GitRemote): boolean {
+ isMaybeConnected(remote: GitRemote): boolean | undefined {
1014
if (remote.provider?.id != null && this.supports(remote.provider.id)) {
1015
- return this.getByRemoteCached(remote)?.maybeConnected ?? false;
+ return this.getByRemoteCached(remote)?.maybeConnected;
1016
1017
return false;
1018
0 commit comments