mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2026-04-27 14:00:34 +00:00
Fix: map gueststar person type to actor for Kodi artwork. (#1124)
This commit is contained in:
parent
152d57a80d
commit
f36c490ac6
1 changed files with 3 additions and 0 deletions
|
|
@ -131,6 +131,9 @@ class Kodi(object):
|
|||
art = person_type.lower()
|
||||
if "writing" in art:
|
||||
art = "writer"
|
||||
elif "gueststar" in art:
|
||||
# Kodi doesn't differentiate gueststars from actors like Jellyfin does.
|
||||
art = "actor"
|
||||
|
||||
self.artwork.update(person["imageurl"], person_id, art, "thumb")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue