mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix impossibility of choosing the first subtitle
The usual combination of a zero-based index and a lazy if... Also, there is no reason to use the default subtitles after asking users which subtitles they want.
This commit is contained in:
parent
b6cd28e39c
commit
e907e35773
1 changed files with 2 additions and 2 deletions
|
@ -633,8 +633,8 @@ class PlayUtils(object):
|
|||
selection = list(['No subtitles']) + list(map(get_track_title, subs_streams))
|
||||
resp = dialog("select", translate(33014), selection) - 1
|
||||
|
||||
if resp:
|
||||
index = subs_streams[resp] if resp > -1 else source.get('DefaultSubtitleStreamIndex')
|
||||
if resp > -1:
|
||||
index = subs_streams[resp]
|
||||
|
||||
if index is not None:
|
||||
|
||||
|
|
Loading…
Reference in a new issue