Skip to content

Commit

Permalink
Ignore devices (bravias) with 'video' service_type for songpal discov…
Browse files Browse the repository at this point in the history
…ery (#133724)
  • Loading branch information
rytilahti authored Dec 23, 2024
1 parent cf45c67 commit 6cdbdad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion homeassistant/components/songpal/config_flow.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ async def async_step_ssdp(
]

# 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:
Expand Down

0 comments on commit 6cdbdad

Please sign in to comment.