mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix subtiles detection
Darn copy paste...
This commit is contained in:
parent
6f31a33818
commit
a33a9e3bac
1 changed files with 1 additions and 1 deletions
|
@ -435,7 +435,7 @@ class PlayUtils():
|
|||
else:
|
||||
prefs += "&SubtitleStreamIndex=%s" % index
|
||||
|
||||
elif (skip_dialog in (0, 2) and len(subs_streams) > 1):
|
||||
elif skip_dialog in (0, 2) and len(subs_streams):
|
||||
selection = list(['No subtitles']) + list(subs_streams.keys())
|
||||
resp = dialog.select(lang(33014), selection)
|
||||
if resp:
|
||||
|
|
Loading…
Reference in a new issue