From: marcelveldt Date: Sun, 13 Oct 2019 02:17:55 +0000 (+0200) Subject: Update chromecast.py X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=c012dff4c344fed748cdcb48d24c3bdaa4cbf97a;p=music-assistant-server.git Update chromecast.py --- diff --git a/music_assistant/playerproviders/chromecast.py b/music_assistant/playerproviders/chromecast.py index cf1434db..14f16578 100644 --- a/music_assistant/playerproviders/chromecast.py +++ b/music_assistant/playerproviders/chromecast.py @@ -48,11 +48,11 @@ class ChromecastPlayer(Player): async def cmd_next(self): ''' send next track command to player ''' - return await self.cc.media_controller.queue_next() + self.cc.media_controller.queue_next() async def cmd_previous(self): ''' [CAN OVERRIDE] send previous track command to player ''' - return await self.cc.media_controller.queue_prev() + self.cc.media_controller.queue_prev() async def cmd_power_on(self): ''' send power ON command to player '''