Fix: map gueststar person type to actor for Kodi artwork. (#1124)

This commit is contained in:
Erwin Broekhuis 2026-04-05 16:55:58 +02:00 committed by GitHub
commit f36c490ac6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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")