Fix HTTP subtitles encoding

This commit is contained in:
angelblue05 2016-10-27 04:04:27 -05:00
parent 106def9014
commit 2d1f1841a5

View file

@ -298,6 +298,7 @@ class PlaybackUtils():
try:
response = requests.get(src, stream=True)
response.encoding = 'utf-8'
response.raise_for_status()
except Exception as e:
del response