From 4b2fdd243a68895fa36563f9f5cb0a6d4050cf82 Mon Sep 17 00:00:00 2001 From: stephanerosi Date: Wed, 4 Apr 2018 15:37:14 +0200 Subject: [PATCH] Channel up and down for webostv (#13624) --- homeassistant/components/media_player/webostv.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/media_player/webostv.py b/homeassistant/components/media_player/webostv.py index acd1ffad6eb..860d69e22c3 100644 --- a/homeassistant/components/media_player/webostv.py +++ b/homeassistant/components/media_player/webostv.py @@ -357,8 +357,8 @@ class LgWebOSDevice(MediaPlayerDevice): def media_next_track(self): """Send next track command.""" - self._client.fast_forward() + self._client.channel_up() def media_previous_track(self): """Send the previous track command.""" - self._client.rewind() + self._client.channel_down()