Fix decoding of sys.argv
This commit is contained in:
parent
79281853ba
commit
463514186d
2 changed files with 10 additions and 7 deletions
15
default.py
15
default.py
|
@ -11,6 +11,7 @@ from xbmcplugin import setResolvedUrl
|
||||||
|
|
||||||
from resources.lib import entrypoint, utils, pickler, pkc_listitem, \
|
from resources.lib import entrypoint, utils, pickler, pkc_listitem, \
|
||||||
variables as v, loghandler
|
variables as v, loghandler
|
||||||
|
from resources.lib.watchdog.utils import unicode_paths
|
||||||
|
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
|
@ -26,9 +27,11 @@ class Main():
|
||||||
# MAIN ENTRY POINT
|
# MAIN ENTRY POINT
|
||||||
# @utils.profiling()
|
# @utils.profiling()
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
log.debug('Full sys.argv received: %s' % argv)
|
log.debug('Full sys.argv received: %s', argv)
|
||||||
# Parse parameters
|
# Parse parameters
|
||||||
params = dict(parse_qsl(argv[2][1:]))
|
path = unicode_paths.decode(argv[0])
|
||||||
|
arguments = unicode_paths.decode(argv[2])
|
||||||
|
params = dict(parse_qsl(arguments[1:]))
|
||||||
mode = params.get('mode', '')
|
mode = params.get('mode', '')
|
||||||
itemid = params.get('id', '')
|
itemid = params.get('id', '')
|
||||||
|
|
||||||
|
@ -121,15 +124,15 @@ class Main():
|
||||||
log.info('User requested fanarttv refresh')
|
log.info('User requested fanarttv refresh')
|
||||||
utils.plex_command('RUN_LIB_SCAN', 'fanart')
|
utils.plex_command('RUN_LIB_SCAN', 'fanart')
|
||||||
|
|
||||||
elif '/extrafanart' in argv[0]:
|
elif '/extrafanart' in path:
|
||||||
plexpath = argv[2][1:]
|
plexpath = arguments[1:]
|
||||||
plexid = itemid
|
plexid = itemid
|
||||||
entrypoint.extra_fanart(plexid, plexpath)
|
entrypoint.extra_fanart(plexid, plexpath)
|
||||||
entrypoint.get_video_files(plexid, plexpath)
|
entrypoint.get_video_files(plexid, plexpath)
|
||||||
|
|
||||||
# Called by e.g. 3rd party plugin video extras
|
# Called by e.g. 3rd party plugin video extras
|
||||||
elif ('/Extras' in argv[0] or '/VideoFiles' in argv[0] or
|
elif ('/Extras' in path or '/VideoFiles' in path or
|
||||||
'/Extras' in argv[2]):
|
'/Extras' in arguments):
|
||||||
plexId = itemid or None
|
plexId = itemid or None
|
||||||
entrypoint.get_video_files(plexId, params)
|
entrypoint.get_video_files(plexId, params)
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ LOG = getLogger('PLEX.entrypoint')
|
||||||
|
|
||||||
try:
|
try:
|
||||||
HANDLE = int(argv[1])
|
HANDLE = int(argv[1])
|
||||||
ARGV_0 = argv[0]
|
ARGV_0 = path_ops.decode_path(argv[0])
|
||||||
except IndexError:
|
except IndexError:
|
||||||
pass
|
pass
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
Loading…
Reference in a new issue