mirror of
https://github.com/home-assistant/core.git
synced 2025-08-02 10:08:23 +00:00
Fix Volumio pause with missing track type (#44447)
This commit is contained in:
parent
f76211d58a
commit
a58219bbc7
@ -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…
x
Reference in New Issue
Block a user