Skip to content

Commit

Permalink
Fix beolink_join and beolink_expand requiring responses
Browse files Browse the repository at this point in the history
  • Loading branch information
mj23000 committed Jan 24, 2025
1 parent efaf6ff commit 9781e53
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion custom_components/bang_olufsen/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"iot_class": "local_push",
"issue_tracker": "https://github.com/bang-olufsen/bang_olufsen-hacs/issues",
"requirements": ["mozart-api==4.1.1.116.6"],
"version": "3.4.3",
"version": "3.4.4",
"zeroconf": ["_bangolufsen._tcp.local.", "_zenith._tcp.local."]
}
4 changes: 2 additions & 2 deletions custom_components/bang_olufsen/media_player.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ async def async_setup_entry(
vol.Optional("source_id"): vol.In(BEOLINK_JOIN_SOURCES),
},
func="async_beolink_join",
supports_response=SupportsResponse.ONLY,
supports_response=SupportsResponse.OPTIONAL,
)

platform.async_register_entity_service(
Expand All @@ -177,7 +177,7 @@ async def async_setup_entry(
),
},
func="async_beolink_expand",
supports_response=SupportsResponse.ONLY,
supports_response=SupportsResponse.OPTIONAL,
)

platform.async_register_entity_service(
Expand Down

0 comments on commit 9781e53

Please sign in to comment.