mirror of
https://github.com/home-assistant/core.git
synced 2025-07-24 21:57:51 +00:00
Ignore devices (bravias) with 'video' service_type for songpal discovery (#133724)
This commit is contained in:
parent
cf45c67055
commit
6cdbdadc24
@ -116,7 +116,7 @@ class SongpalConfigFlow(ConfigFlow, domain=DOMAIN):
|
|||||||
]
|
]
|
||||||
|
|
||||||
# Ignore Bravia TVs
|
# 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")
|
return self.async_abort(reason="not_songpal_device")
|
||||||
|
|
||||||
if TYPE_CHECKING:
|
if TYPE_CHECKING:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user