Fix encoding
This commit is contained in:
parent
ed83a7009f
commit
5aa337d03c
1 changed files with 1 additions and 1 deletions
|
@ -415,7 +415,7 @@ class PlayUtils():
|
||||||
% (self.server, selectSubsIndex)
|
% (self.server, selectSubsIndex)
|
||||||
url = self.API.addPlexHeadersToUrl(url)
|
url = self.API.addPlexHeadersToUrl(url)
|
||||||
self.logMsg("Downloadable sub: %s: %s" % (selectSubsIndex, url), 1)
|
self.logMsg("Downloadable sub: %s: %s" % (selectSubsIndex, url), 1)
|
||||||
listitem.setSubtitles([url])
|
listitem.setSubtitles([url.encode('utf-8')])
|
||||||
else:
|
else:
|
||||||
self.logMsg('Need to burn in subtitle %s' % selectSubsIndex, 1)
|
self.logMsg('Need to burn in subtitle %s' % selectSubsIndex, 1)
|
||||||
playurlprefs["subtitleStreamID"] = selectSubsIndex
|
playurlprefs["subtitleStreamID"] = selectSubsIndex
|
||||||
|
|
Loading…
Reference in a new issue