Fix encoding
This commit is contained in:
parent
f094ca4299
commit
ed83a7009f
1 changed files with 1 additions and 1 deletions
|
@ -66,7 +66,7 @@ class PlaybackUtils():
|
||||||
if playmethod == "Transcode":
|
if playmethod == "Transcode":
|
||||||
window('emby_%s.playmethod' % playurl, clear=True)
|
window('emby_%s.playmethod' % playurl, clear=True)
|
||||||
playurl = playutils.audioSubsPref(
|
playurl = playutils.audioSubsPref(
|
||||||
listitem, playurl)
|
listitem, playurl.decode('utf-8')).encode('utf-8')
|
||||||
window('emby_%s.playmethod' % playurl, "Transcode")
|
window('emby_%s.playmethod' % playurl, "Transcode")
|
||||||
listitem.setPath(playurl)
|
listitem.setPath(playurl)
|
||||||
self.setArtwork(listitem)
|
self.setArtwork(listitem)
|
||||||
|
|
Loading…
Reference in a new issue