mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix error caused when starting from widget
.get to avoid key error. Didn't think about the playback error from widgets.
This commit is contained in:
parent
cdfeeaf4fb
commit
e7335b05a0
1 changed files with 4 additions and 4 deletions
|
@ -198,8 +198,8 @@ class Player( xbmc.Player ):
|
|||
track_query = '{"jsonrpc": "2.0", "method": "Player.GetProperties", "params": {"playerid":1,"properties": ["currentsubtitle","currentaudiostream","subtitleenabled"]} , "id": 1}'
|
||||
result = xbmc.executeJSONRPC(track_query)
|
||||
result = json.loads(result)
|
||||
indexAudio = result['result']['currentaudiostream']['index']
|
||||
indexSubs = result['result']['currentsubtitle']['index']
|
||||
indexAudio = result['result']['currentaudiostream'].get('index', "")
|
||||
indexSubs = result['result']['currentsubtitle'].get('index', "")
|
||||
subsEnabled = result['result']['subtitleenabled']
|
||||
|
||||
# Convert back into an Emby index
|
||||
|
@ -320,8 +320,8 @@ class Player( xbmc.Player ):
|
|||
track_query = '{"jsonrpc": "2.0", "method": "Player.GetProperties", "params": {"playerid": 1,"properties": ["currentsubtitle","currentaudiostream","subtitleenabled"]} , "id": 1}'
|
||||
result = xbmc.executeJSONRPC(track_query)
|
||||
result = json.loads(result)
|
||||
indexAudio = result['result']['currentaudiostream']['index']
|
||||
indexSubs = result['result']['currentsubtitle']['index']
|
||||
indexAudio = result['result']['currentaudiostream'].get('index', "")
|
||||
indexSubs = result['result']['currentsubtitle'].get('index', "")
|
||||
subsEnabled = result['result']['subtitleenabled']
|
||||
|
||||
postdata['AudioStreamIndex'] = indexAudio + 1
|
||||
|
|
Loading…
Reference in a new issue