Fix subtitles encoding

This commit is contained in:
angelblue05 2018-09-14 04:03:33 -05:00
parent e8ab4945f0
commit b4f142c01d

View file

@ -441,7 +441,7 @@ class PlayUtils(object):
LOG.info("[ subtitles/%s ] %s", index, url)
if 'Language' in stream:
filename = "Stream.%s.%s" % (stream['Language'].encode('utf-8'), stream['Codec'])
filename = "Stream.%s.%s" % (stream['Language'].encode('utf-8'), stream['Codec'].encode('utf-8'))
try:
subs.append(self.download_external_subs(url, filename))