mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-23 13:29:43 +00:00
Merge pull request #871 from CeruleanRed/fix/fix-up-next-compatability
Clear playlist if clear flag is set (UpNext)
This commit is contained in:
commit
f209f9e59b
@ -166,13 +166,12 @@ class Actions(object):
|
||||
playlist = self.get_playlist(item)
|
||||
player = xbmc.Player()
|
||||
|
||||
# xbmc.executebuiltin("Playlist.Clear") # Clear playlist to remove the previous item from playlist position no.2
|
||||
|
||||
if clear:
|
||||
if player.isPlaying():
|
||||
player.stop()
|
||||
|
||||
xbmc.executebuiltin('ActivateWindow(busydialognocancel)')
|
||||
playlist.clear()
|
||||
index = 0
|
||||
else:
|
||||
index = max(playlist.getposition(), 0) + 1 # Can return -1
|
||||
@ -196,11 +195,12 @@ class Actions(object):
|
||||
playutils.set_properties(item, item['PlaybackInfo']['Method'], self.server_id)
|
||||
|
||||
playlist.add(item['PlaybackInfo']['Path'], listitem, index)
|
||||
index += 1
|
||||
|
||||
if clear:
|
||||
xbmc.executebuiltin('Dialog.Close(busydialognocancel)')
|
||||
player.play(playlist)
|
||||
player.play(playlist, startpos=index)
|
||||
|
||||
index += 1
|
||||
|
||||
server_address = item['PlaybackInfo']['ServerAddress']
|
||||
token = item['PlaybackInfo']['Token']
|
||||
|
Loading…
Reference in New Issue
Block a user