Fix external subtitles

This commit is contained in:
angelblue05 2016-10-30 04:39:54 -05:00
parent dabdee9604
commit 1ca4ef48f5
1 changed files with 3 additions and 4 deletions

View File

@ -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