mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-12 21:26:10 +00:00
load all item details for playlists
This commit is contained in:
parent
749d0e92e4
commit
7e2fdede83
1 changed files with 3 additions and 4 deletions
|
@ -230,10 +230,9 @@ class Monitor(xbmc.Monitor):
|
|||
|
||||
elif method == 'Play':
|
||||
|
||||
item = server['api'].get_item(data['ItemIds'].pop(0))
|
||||
data['ItemIds'].insert(0, item)
|
||||
items = server['api'].get_items(data['ItemIds'])
|
||||
|
||||
PlaylistWorker(data.get('ServerId'), data['ItemIds'], data['PlayCommand'] == 'PlayNow',
|
||||
PlaylistWorker(data.get('ServerId'), items, data['PlayCommand'] == 'PlayNow',
|
||||
data.get('StartPositionTicks', 0), data.get('AudioStreamIndex'),
|
||||
data.get('SubtitleStreamIndex')).start()
|
||||
|
||||
|
|
Loading…
Reference in a new issue