Fix Volumio pause with missing track type (#44447)
This commit is contained in:
parent
2ee2f85574
commit
d4453908d5
1 changed files with 1 additions and 1 deletions
|
@ -204,7 +204,7 @@ class Volumio(MediaPlayerEntity):
|
||||||
|
|
||||||
async def async_media_pause(self):
|
async def async_media_pause(self):
|
||||||
"""Send media_pause command to media player."""
|
"""Send media_pause command to media player."""
|
||||||
if self._state["trackType"] == "webradio":
|
if self._state.get("trackType") == "webradio":
|
||||||
await self._volumio.stop()
|
await self._volumio.stop()
|
||||||
else:
|
else:
|
||||||
await self._volumio.pause()
|
await self._volumio.pause()
|
||||||
|
|
Loading…
Add table
Reference in a new issue