diff --git a/resources/lib/monitor.py b/resources/lib/monitor.py index c0f5256c..04a1bf9b 100644 --- a/resources/lib/monitor.py +++ b/resources/lib/monitor.py @@ -66,7 +66,7 @@ class Monitor(xbmc.Monitor): elif sender.startswith('upnextprovider'): LOG.info('Attempting to play the next episode via upnext') - method = '.'.join(method.split('.')[1:]) + method = method.split('.', 1)[1] if method not in ('plugin.video.jellyfin_play_action',): LOG.info('Received invalid upnext method: %s', method)