From 8d5f71dd6a33061a437cd33cfd72afe60cd5ed94 Mon Sep 17 00:00:00 2001 From: tomkat83 Date: Fri, 29 Apr 2016 12:45:40 +0200 Subject: [PATCH] Cache everything, not only fanart, poster, thumb --- resources/lib/artwork.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/artwork.py b/resources/lib/artwork.py index 7cff323c..5b9fb8a5 100644 --- a/resources/lib/artwork.py +++ b/resources/lib/artwork.py @@ -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):