From c8e8e04697cbd810597d9ecd303b10a8db3756f3 Mon Sep 17 00:00:00 2001 From: croneter Date: Fri, 9 Nov 2018 08:02:04 +0100 Subject: [PATCH] Speed up sync of actor artwork --- resources/lib/kodi_db/video.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/resources/lib/kodi_db/video.py b/resources/lib/kodi_db/video.py index f984bcb4..b7d0fe45 100644 --- a/resources/lib/kodi_db/video.py +++ b/resources/lib/kodi_db/video.py @@ -445,10 +445,7 @@ class KodiVideoDB(common.KodiDBBase): 'VALUES (?, ?)', (actor_id, name)) if art_url: - self.modify_art(art_url, - actor_id, - 'actor', - 'thumb') + self.add_art(art_url, actor_id, 'actor', 'thumb') return actor_id def get_art(self, kodi_id, kodi_type):