mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-17 21:56:13 +00:00
Different studio fix
PlayUtils was erroring on empty list - this is a better fix than the last i think
This commit is contained in:
parent
200040dd62
commit
62b3f8da2d
2 changed files with 5 additions and 4 deletions
|
@ -144,7 +144,10 @@ class PlaybackUtils():
|
|||
|
||||
# Process Studios
|
||||
studios = API().getStudios(result)
|
||||
studio = studios[0]
|
||||
if studios == []:
|
||||
studio = ""
|
||||
else:
|
||||
studio = studios[0]
|
||||
listItem.setInfo('video', {'studio' : studio})
|
||||
|
||||
# play info
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue