From 6df1d8c19fde5247cd7b00aa4466ca982ca88eb6 Mon Sep 17 00:00:00 2001 From: Rudolf Offereins Date: Wed, 26 Oct 2022 10:48:06 +0200 Subject: [PATCH] :bug: Disable unimplemented seek --- custom_components/lghorizon/manifest.json | 2 +- custom_components/lghorizon/media_player.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/custom_components/lghorizon/manifest.json b/custom_components/lghorizon/manifest.json index 72e295b..9c3978b 100644 --- a/custom_components/lghorizon/manifest.json +++ b/custom_components/lghorizon/manifest.json @@ -7,7 +7,7 @@ "@Sholofly" ], "iot_class": "cloud_push", - "version": "0.2.0b1", + "version": "0.3.0b2", "config_flow": true, "requirements": [ "lghorizon==0.4.6" diff --git a/custom_components/lghorizon/media_player.py b/custom_components/lghorizon/media_player.py index 346696f..0442761 100644 --- a/custom_components/lghorizon/media_player.py +++ b/custom_components/lghorizon/media_player.py @@ -201,7 +201,7 @@ def supported_features(self): | SUPPORT_SELECT_SOURCE | SUPPORT_PLAY_MEDIA | SUPPORT_BROWSE_MEDIA - | SUPPORT_SEEK + # | SUPPORT_SEEK ) return ( SUPPORT_PLAY @@ -214,7 +214,7 @@ def supported_features(self): | SUPPORT_PREVIOUS_TRACK | SUPPORT_PLAY_MEDIA | SUPPORT_BROWSE_MEDIA - | SUPPORT_SEEK + # | SUPPORT_SEEK ) @property