Ignore devices (bravias) with 'video' service_type for songpal discovery (#133724)

This commit is contained in:
Teemu R. 2024-12-23 06:38:10 +01:00 committed by GitHub
parent cf45c67055
commit 6cdbdadc24
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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: