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 fef314b commit 5138576Copy full SHA for 5138576
src/plus/integrations/integrationService.ts
@@ -964,9 +964,9 @@ export class IntegrationService implements Disposable {
964
return this.getMyPullRequestsCore(integrations);
965
}
966
967
- isMaybeConnected(remote: GitRemote): boolean {
+ isMaybeConnected(remote: GitRemote): boolean | undefined {
968
if (remote.provider?.id != null && this.supports(remote.provider.id)) {
969
- return this.getByRemoteCached(remote)?.maybeConnected ?? false;
+ return this.getByRemoteCached(remote)?.maybeConnected;
970
971
return false;
972
0 commit comments