Fix UnicodeEncodeError on playback startup
This commit is contained in:
parent
d92ce36890
commit
11f636c4b9
1 changed files with 2 additions and 1 deletions
|
@ -148,7 +148,8 @@ class ContextMenu(object):
|
||||||
playqueue.clear()
|
playqueue.clear()
|
||||||
app.PLAYSTATE.context_menu_play = True
|
app.PLAYSTATE.context_menu_play = True
|
||||||
handle = self.api.path(force_first_media=False, force_addon=True)
|
handle = self.api.path(force_first_media=False, force_addon=True)
|
||||||
xbmc.executebuiltin('RunPlugin(%s)' % handle)
|
handle = 'RunPlugin(%s)' % handle
|
||||||
|
xbmc.executebuiltin(handle.encode('utf-8'))
|
||||||
|
|
||||||
def _extras(self):
|
def _extras(self):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Add table
Reference in a new issue