Fail setResolvedUrl on 1st run
- Using add-on paths in the Kodi library, we need to make sure that the subsequent call of xbmc.setresolvedUrl fails or is forwarded once again
This commit is contained in:
parent
aac22c3369
commit
bba42bb1bb
1 changed files with 6 additions and 7 deletions
|
@ -185,11 +185,10 @@ class PlayqueueMonitor(Thread):
|
|||
else:
|
||||
LOG.debug('Detected new Kodi element at position %s: %s ',
|
||||
i, new_item)
|
||||
try:
|
||||
if playqueue.id is None:
|
||||
PL.init_Plex_playlist(playqueue,
|
||||
kodi_item=new_item)
|
||||
else:
|
||||
LOG.debug('Not yet initiating playback')
|
||||
return
|
||||
try:
|
||||
PL.add_item_to_PMS_playlist(playqueue,
|
||||
i,
|
||||
kodi_item=new_item)
|
||||
|
|
Loading…
Reference in a new issue