Add support for upnext addon

This commit is contained in:
mcarlton00 2019-10-06 11:23:24 -04:00
parent 6e06a6f5f7
commit d77d619b50
2 changed files with 4 additions and 1 deletions

View file

@ -65,9 +65,11 @@ class Monitor(xbmc.Monitor):
data = json.loads(data)[0]
elif sender.startswith('upnextprovider'):
method = method.split('.')[1]
LOG.info('Attempting to play the next episode via upnext')
method = '.'.join(method.split('.')[1:])
if method not in ('plugin.video.jellyfin_play_action',):
LOG.info('Received invalid upnext method: %s', method)
return
data = json.loads(data)