Fix possible UnicodeEncodeError
This commit is contained in:
parent
11f636c4b9
commit
b1aceb1e90
1 changed files with 2 additions and 1 deletions
|
@ -132,7 +132,8 @@ class PlexCompanion(backgroundthread.KillableThread):
|
||||||
'key': '{server}%s' % data.get('key'),
|
'key': '{server}%s' % data.get('key'),
|
||||||
'offset': data.get('offset')
|
'offset': data.get('offset')
|
||||||
}
|
}
|
||||||
executebuiltin('RunPlugin(plugin://%s)' % utils.extend_url(v.ADDON_ID, params))
|
handle = 'RunPlugin(plugin://%s)' % utils.extend_url(v.ADDON_ID, params)
|
||||||
|
executebuiltin(handle.encode('utf-8'))
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _process_playlist(data):
|
def _process_playlist(data):
|
||||||
|
|
Loading…
Reference in a new issue