From 049c304f8b923e3177a00377e80668b9dd8711fc Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Sat, 23 Jan 2016 02:32:51 -0600 Subject: [PATCH] Clear property So artwork can be deleted when needed, after the initial sync has completed --- resources/lib/librarysync.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/lib/librarysync.py b/resources/lib/librarysync.py index b538016c..ae1fcd1b 100644 --- a/resources/lib/librarysync.py +++ b/resources/lib/librarysync.py @@ -293,6 +293,7 @@ class LibrarySync(threading.Thread): elapsedtotal = datetime.now() - starttotal utils.window('emby_dbScan', clear=True) + utils.window('emby_initialScan', clear=True) xbmcgui.Dialog().notification( heading="Emby for Kodi", message="%s completed in: %s" % @@ -927,7 +928,7 @@ class LibrarySync(threading.Thread): def resumeThread(self): self.suspend_thread = False self.logMsg("Resuming thread...", 0) - + class ManualSync(LibrarySync):