Don't cache actor artwork
- It takes too long and takes up too much memory
This commit is contained in:
parent
44b98e5694
commit
3616c25a98
1 changed files with 2 additions and 1 deletions
|
@ -411,7 +411,8 @@ class Artwork():
|
|||
cursor.execute(query, (imageUrl, kodiId, mediaType, imageType))
|
||||
|
||||
# Cache fanart and poster in Kodi texture cache
|
||||
self.cacheTexture(imageUrl)
|
||||
if mediaType != 'actor':
|
||||
self.cacheTexture(imageUrl)
|
||||
|
||||
def deleteArtwork(self, kodiId, mediaType, cursor):
|
||||
query = ' '.join((
|
||||
|
|
Loading…
Reference in a new issue