mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-26 10:00:33 +00:00
Merge pull request #117 from mcarlton00/upnext-support
Add support for upnext addon
This commit is contained in:
commit
461be055ea
2 changed files with 4 additions and 1 deletions
|
@ -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 = method.split('.', 1)[1]
|
||||
|
||||
if method not in ('plugin.video.jellyfin_play_action',):
|
||||
LOG.info('Received invalid upnext method: %s', method)
|
||||
return
|
||||
|
||||
data = json.loads(data)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue