mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Still allow full manual sync
This commit is contained in:
parent
021261617e
commit
7e281ecf13
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue