diff --git a/resources/lib/artwork.py b/resources/lib/artwork.py index 08105837..d0f8f14f 100644 --- a/resources/lib/artwork.py +++ b/resources/lib/artwork.py @@ -259,7 +259,7 @@ class Artwork(): connection = kodiSQL('video') cursor = connection.cursor() # dont include actors - cursor.execute("SELECT url FROM art WHERE media_type != 'actor'") + cursor.execute("SELECT url FROM art") result = cursor.fetchall() total = len(result) log.info("Image cache sync about to process %s video images" % total)