From 00613e7ef5eab9e8fd3923fdce9005dfc7e6aec7 Mon Sep 17 00:00:00 2001 From: Croneter Date: Fri, 20 Apr 2018 07:41:59 +0200 Subject: [PATCH] Fix episode artwork sometimes not being complete - Partially fixes #453 --- resources/lib/PlexAPI.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/resources/lib/PlexAPI.py b/resources/lib/PlexAPI.py index 19cfe07a..19b95844 100644 --- a/resources/lib/PlexAPI.py +++ b/resources/lib/PlexAPI.py @@ -772,9 +772,10 @@ class API(object): # Artwork lookup for episodes is broken for addon paths # Episodes is a bit special, only get the thumb, because all # the other artwork will be saved under season and show - art = self._one_artwork('thumb') - if art: - artworks['thumb'] = art + for kodi_artwork, plex_artwork in v.KODI_TO_PLEX_ARTWORK.iteritems(): + art = self._one_artwork(plex_artwork) + if art: + artworks[kodi_artwork] = art if full_artwork: with plexdb.Get_Plex_DB() as plex_db: db_item = plex_db.getItem_byId(self.plex_id())