Cache everything, not only fanart, poster, thumb

This commit is contained in:
tomkat83 2016-04-29 12:45:40 +02:00
parent d879a9d23c
commit 8d5f71dd6a

View file

@ -430,7 +430,7 @@ class Artwork():
cursor.execute(query, (imageUrl, kodiId, mediaType, imageType))
# Cache fanart and poster in Kodi texture cache
if cacheimage and imageType in ("fanart", "poster", "thumb"):
if cacheimage:
self.CacheTexture(imageUrl)
def deleteArtwork(self, kodiid, mediatype, cursor):