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 b310900 commit 320034fCopy full SHA for 320034f
src/plus/integrations/integrationService.ts
@@ -594,7 +594,14 @@ export class IntegrationService implements Disposable {
594
? integrationIds
595
: [...Object.values(HostingIntegrationId), ...Object.values(IssueIntegrationId)]) {
596
const integration = await this.get(integrationId);
597
- if (integration == null) continue;
+ if (
598
+ integration == null ||
599
+ (options?.openRepositoriesOnly &&
600
+ isHostingIntegrationId(integrationId) &&
601
+ !openRemotesByIntegrationId.has(integrationId))
602
+ ) {
603
+ continue;
604
+ }
605
606
integrations.set(
607
integration,
0 commit comments