mirror of
https://github.com/home-assistant/core.git
synced 2025-06-25 01:21:51 +02:00
Bump pyblu to 2.0.1 (#143178)
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
"config_flow": true,
|
||||
"documentation": "https://www.home-assistant.io/integrations/bluesound",
|
||||
"iot_class": "local_polling",
|
||||
"requirements": ["pyblu==2.0.0"],
|
||||
"requirements": ["pyblu==2.0.1"],
|
||||
"zeroconf": [
|
||||
{
|
||||
"type": "_musc._tcp.local."
|
||||
|
@ -330,7 +330,12 @@ class BluesoundPlayer(CoordinatorEntity[BluesoundCoordinator], MediaPlayerEntity
|
||||
|
||||
if self._status.input_id is not None:
|
||||
for input_ in self._inputs:
|
||||
if input_.id == self._status.input_id:
|
||||
# the input might not have an id => also try to match on the stream_url/url
|
||||
# we have to use both because neither matches all the time
|
||||
if (
|
||||
input_.id == self._status.input_id
|
||||
or input_.url == self._status.stream_url
|
||||
):
|
||||
return input_.text
|
||||
|
||||
for preset in self._presets:
|
||||
|
2
requirements_all.txt
generated
2
requirements_all.txt
generated
@ -1852,7 +1852,7 @@ pybbox==0.0.5-alpha
|
||||
pyblackbird==0.6
|
||||
|
||||
# homeassistant.components.bluesound
|
||||
pyblu==2.0.0
|
||||
pyblu==2.0.1
|
||||
|
||||
# homeassistant.components.neato
|
||||
pybotvac==0.0.26
|
||||
|
2
requirements_test_all.txt
generated
2
requirements_test_all.txt
generated
@ -1530,7 +1530,7 @@ pybalboa==1.1.3
|
||||
pyblackbird==0.6
|
||||
|
||||
# homeassistant.components.bluesound
|
||||
pyblu==2.0.0
|
||||
pyblu==2.0.1
|
||||
|
||||
# homeassistant.components.neato
|
||||
pybotvac==0.0.26
|
||||
|
Reference in New Issue
Block a user