From 93893d0237276de019665cbaef1968187ea2df0d Mon Sep 17 00:00:00 2001 From: Bram Kragten Date: Mon, 3 Oct 2022 11:43:17 +0200 Subject: [PATCH] =?UTF-8?q?Don't=20include=20all=20homekit=20discovery=20i?= =?UTF-8?q?tems=20for=20integrations=20that=20suppo=E2=80=A6=20(#13960)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/panels/config/integrations/dialog-add-integration.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/panels/config/integrations/dialog-add-integration.ts b/src/panels/config/integrations/dialog-add-integration.ts index 34aea54d2b..c2b6837169 100644 --- a/src/panels/config/integrations/dialog-add-integration.ts +++ b/src/panels/config/integrations/dialog-add-integration.ts @@ -510,10 +510,6 @@ class AddIntegrationDialog extends LitElement { const integrations = this._integrations![integration.domain].integrations!; let domains = Object.keys(integrations); - if (integration.iot_standards?.includes("homekit")) { - // if homekit is supported, also fetch the discovered homekit devices - domains.push("homekit_controller"); - } if (integration.domain === "apple") { // we show discoverd homekit devices in their own brand section, dont show them at apple domains = domains.filter((domain) => domain !== "homekit_controller");