From f3ef6bdfe6f9fc3053e488820eb5a06c536b0024 Mon Sep 17 00:00:00 2001 From: croneter Date: Tue, 21 Dec 2021 15:15:29 +0100 Subject: [PATCH] Remove obsolete comments --- resources/lib/json_rpc.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/resources/lib/json_rpc.py b/resources/lib/json_rpc.py index 8a6f00a6..3c060e91 100644 --- a/resources/lib/json_rpc.py +++ b/resources/lib/json_rpc.py @@ -442,8 +442,6 @@ def get_current_subtitle_stream_index(playerid): """ Returns the currently active subtitle stream index [int] or None if there are no subs - PICKING UP CHANGES ON SUBTITLES IS CURRENTLY BROKEN ON THE KODI SIDE! The - JSON reply won't change even though subtitles are changed :-( """ try: return JsonRPC('Player.GetProperties').execute({ @@ -456,8 +454,6 @@ def get_current_subtitle_stream_index(playerid): def get_subtitle_enabled(playerid): """ Returns True if a subtitle is currently enabled, False otherwise. - PICKING UP CHANGES ON SUBTITLES IS CURRENTLY BROKEN ON THE KODI SIDE! The - JSON reply won't change even though subtitles are changed :-( """ return JsonRPC('Player.GetProperties').execute({ 'playerid': playerid,