Update pysonos to 0.0.14 (#24185)
parent
50db622689
commit
b6bb6919e6
|
@ -4,7 +4,7 @@
|
||||||
"config_flow": true,
|
"config_flow": true,
|
||||||
"documentation": "https://www.home-assistant.io/components/sonos",
|
"documentation": "https://www.home-assistant.io/components/sonos",
|
||||||
"requirements": [
|
"requirements": [
|
||||||
"pysonos==0.0.12"
|
"pysonos==0.0.14"
|
||||||
],
|
],
|
||||||
"dependencies": [],
|
"dependencies": [],
|
||||||
"codeowners": [
|
"codeowners": [
|
||||||
|
|
|
@ -374,7 +374,9 @@ class SonosEntity(MediaPlayerDevice):
|
||||||
|
|
||||||
def _set_favorites(self):
|
def _set_favorites(self):
|
||||||
"""Set available favorites."""
|
"""Set available favorites."""
|
||||||
self._favorites = self.soco.music_library.get_sonos_favorites()
|
favorites = self.soco.music_library.get_sonos_favorites()
|
||||||
|
# Exclude favorites that are non-playable due to no linked resources
|
||||||
|
self._favorites = [f for f in favorites if f.reference.resources]
|
||||||
|
|
||||||
def _radio_artwork(self, url):
|
def _radio_artwork(self, url):
|
||||||
"""Return the private URL with artwork for a radio stream."""
|
"""Return the private URL with artwork for a radio stream."""
|
||||||
|
|
|
@ -1327,7 +1327,7 @@ pysmartthings==0.6.8
|
||||||
pysnmp==4.4.9
|
pysnmp==4.4.9
|
||||||
|
|
||||||
# homeassistant.components.sonos
|
# homeassistant.components.sonos
|
||||||
pysonos==0.0.12
|
pysonos==0.0.14
|
||||||
|
|
||||||
# homeassistant.components.spc
|
# homeassistant.components.spc
|
||||||
pyspcwebgw==0.4.0
|
pyspcwebgw==0.4.0
|
||||||
|
|
|
@ -274,7 +274,7 @@ pysmartapp==0.3.2
|
||||||
pysmartthings==0.6.8
|
pysmartthings==0.6.8
|
||||||
|
|
||||||
# homeassistant.components.sonos
|
# homeassistant.components.sonos
|
||||||
pysonos==0.0.12
|
pysonos==0.0.14
|
||||||
|
|
||||||
# homeassistant.components.spc
|
# homeassistant.components.spc
|
||||||
pyspcwebgw==0.4.0
|
pyspcwebgw==0.4.0
|
||||||
|
|
Loading…
Reference in New Issue