mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 05:07:41 +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
|
||||
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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user