Revert "Fix playback not starting in some cirrcumstances"

This reverts commit f9037dcbd8.
This commit is contained in:
tomkat83 2017-08-10 19:34:23 +02:00
parent 368c902458
commit 3d58b93107

View file

@ -2395,11 +2395,9 @@ 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:
# r.content does not always seem to be encoded!
f.write(tryEncode(r.content))
f.write(r.content)
return path
def GetKodiPremierDate(self):