From 6cdbdadc244f9257db5c5379ccf3032013ec5ec7 Mon Sep 17 00:00:00 2001 From: "Teemu R." Date: Mon, 23 Dec 2024 06:38:10 +0100 Subject: [PATCH] Ignore devices (bravias) with 'video' service_type for songpal discovery (#133724) --- homeassistant/components/songpal/config_flow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/components/songpal/config_flow.py b/homeassistant/components/songpal/config_flow.py index 41cc0763642..1c13013108f 100644 --- a/homeassistant/components/songpal/config_flow.py +++ b/homeassistant/components/songpal/config_flow.py @@ -116,7 +116,7 @@ class SongpalConfigFlow(ConfigFlow, domain=DOMAIN): ] # Ignore Bravia TVs - if "videoScreen" in service_types: + if "videoScreen" in service_types or "video" in service_types: return self.async_abort(reason="not_songpal_device") if TYPE_CHECKING: