From 44b98e56940077288c2c4fe168287f1f59ab432d Mon Sep 17 00:00:00 2001 From: tomkat83 Date: Fri, 20 Jan 2017 16:23:05 +0100 Subject: [PATCH] Revert "Also cache actor images on manual caching" This reverts commit 5d2f57aec1dfb7a4abad1df4a56fe2ded2f3be29. --- 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 d0f8f14f..08105837 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") + cursor.execute("SELECT url FROM art WHERE media_type != 'actor'") result = cursor.fetchall() total = len(result) log.info("Image cache sync about to process %s video images" % total)