mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-25 17:40:31 +00:00
Automatically download external subs
There's minimal impact for downloading external subs. Automatically download them if there's a language tag.
This commit is contained in:
parent
d0c939b78e
commit
bfa3b0f2da
2 changed files with 1 additions and 2 deletions
|
@ -266,7 +266,7 @@ class PlaybackUtils():
|
|||
url = ("%s/Videos/%s/%s/Subtitles/%s/Stream.srt"
|
||||
% (self.server, itemid, itemid, index))
|
||||
|
||||
if settings('downloadExternalSubs') == "true" and "Language" in stream:
|
||||
if "Language" in stream:
|
||||
|
||||
filename = "Stream.%s.srt" % stream['Language']
|
||||
try:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue