Fix playback not starting in some cirrcumstances

- Should fix #330
This commit is contained in:
tomkat83 2017-08-08 20:27:37 +02:00
parent 630b848f6e
commit f9037dcbd8

View file

@ -2395,9 +2395,11 @@ class API():
log.error('Could not temporarily download subtitle %s' % url)
return
else:
log.debug('Writing temp subtitle to %s' % path)
r.encoding = 'utf-8'
with open(path, 'wb') as f:
f.write(r.content)
# r.content does not always seem to be encoded!
f.write(tryEncode(r.content))
return path
def GetKodiPremierDate(self):