Fix TV show artwork Kodi native library (reset Kodi DB!)
This commit is contained in:
parent
54c132d3e3
commit
7fb0f32bcf
1 changed files with 6 additions and 0 deletions
|
@ -776,6 +776,12 @@ 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
|
||||
# EXCEPT if you're constructing a listitem
|
||||
if not full_artwork:
|
||||
art = self._one_artwork('thumb')
|
||||
if art:
|
||||
artworks['thumb'] = art
|
||||
return artworks
|
||||
for kodi_artwork, plex_artwork in \
|
||||
v.KODI_TO_PLEX_ARTWORK_EPISODE.iteritems():
|
||||
art = self._one_artwork(plex_artwork)
|
||||
|
|
Loading…
Reference in a new issue