From 996adc2c038d8742b481a4fa2219656773835890 Mon Sep 17 00:00:00 2001 From: croneter Date: Sat, 2 Feb 2019 11:30:03 +0100 Subject: [PATCH] Fix artwork caching AttributeError --- resources/lib/sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/sync.py b/resources/lib/sync.py index c6fd0c7b..2c3ba4ba 100644 --- a/resources/lib/sync.py +++ b/resources/lib/sync.py @@ -135,7 +135,7 @@ class Sync(backgroundthread.KillableThread): LOG.info('Not synching Plex artwork - not caching') return if self.image_cache_thread and self.image_cache_thread.is_alive(): - self.image_cache_thread.cancel() + self.image_cache_thread.abort() self.image_cache_thread.join() self.image_cache_thread = artwork.ImageCachingThread() self.image_cache_thread.start()