mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-07-20 21:38:58 +00:00
Fix empty artist, missing Title
This commit is contained in:
parent
59ce94066e
commit
1fc22ce824
2 changed files with 2 additions and 1 deletions
|
@ -381,7 +381,7 @@ class Actions(object):
|
|||
metadata.update({
|
||||
'mediatype': "musicvideo",
|
||||
'album': obj['Album'],
|
||||
'artist': obj['Artists'],
|
||||
'artist': obj['Artists'] or [],
|
||||
'lastplayed': obj['DatePlayed'],
|
||||
'duration': obj['Runtime']
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue