Still allow full manual sync

This commit is contained in:
xnappo 2015-08-04 09:17:41 -05:00
parent 021261617e
commit 7e281ecf13

View file

@ -75,7 +75,7 @@ class LibrarySync(threading.Thread):
addon.setSetting("Sources", "true")
# just do a incremental sync if that is what is required
if(addon.getSetting("useIncSync") == "true" and addon.getSetting("SyncInstallRunDone") == "true"):
if(addon.getSetting("useIncSync") == "true" and addon.getSetting("SyncInstallRunDone") == "true") and manualRun == False:
utils.logMsg("Sync Database", "Using incremental sync instead of full sync useIncSync=True)", 0)
du = DownloadUtils()