mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix external subtitles
This commit is contained in:
parent
dabdee9604
commit
1ca4ef48f5
1 changed files with 3 additions and 4 deletions
|
@ -276,7 +276,7 @@ class PlaybackUtils():
|
|||
externalsubs.append(path)
|
||||
except Exception as e:
|
||||
log.error(e)
|
||||
continue
|
||||
externalsubs.append(url)
|
||||
else:
|
||||
externalsubs.append(url)
|
||||
|
||||
|
@ -298,12 +298,11 @@ class PlaybackUtils():
|
|||
|
||||
try:
|
||||
response = requests.get(src, stream=True)
|
||||
response.encoding = 'utf-8'
|
||||
response.raise_for_status()
|
||||
except Exception as e:
|
||||
del response
|
||||
except Exception:
|
||||
raise
|
||||
else:
|
||||
response.encoding = 'utf-8'
|
||||
with open(path, 'wb') as f:
|
||||
f.write(response.content)
|
||||
del response
|
||||
|
|
Loading…
Reference in a new issue