Clear property

So artwork can be deleted when needed, after the initial sync has
completed
This commit is contained in:
angelblue05 2016-01-23 02:32:51 -06:00
parent 6653b1a929
commit 049c304f8b

View file

@ -293,6 +293,7 @@ class LibrarySync(threading.Thread):
elapsedtotal = datetime.now() - starttotal elapsedtotal = datetime.now() - starttotal
utils.window('emby_dbScan', clear=True) utils.window('emby_dbScan', clear=True)
utils.window('emby_initialScan', clear=True)
xbmcgui.Dialog().notification( xbmcgui.Dialog().notification(
heading="Emby for Kodi", heading="Emby for Kodi",
message="%s completed in: %s" % message="%s completed in: %s" %
@ -927,7 +928,7 @@ class LibrarySync(threading.Thread):
def resumeThread(self): def resumeThread(self):
self.suspend_thread = False self.suspend_thread = False
self.logMsg("Resuming thread...", 0) self.logMsg("Resuming thread...", 0)
class ManualSync(LibrarySync): class ManualSync(LibrarySync):