Merge remote-tracking branch 'origin/master'
Conflicts: resources/lib/LibrarySync.py
This commit is contained in:
commit
c3e2d88784
1 changed files with 3 additions and 3 deletions
|
@ -63,8 +63,8 @@ class LibrarySync(threading.Thread):
|
||||||
startupDone = WINDOW.getProperty("startup") == "done"
|
startupDone = WINDOW.getProperty("startup") == "done"
|
||||||
syncInstallRunDone = addon.getSetting("SyncInstallRunDone") == "true"
|
syncInstallRunDone = addon.getSetting("SyncInstallRunDone") == "true"
|
||||||
performMusicSync = addon.getSetting("enableMusicSync") == "true"
|
performMusicSync = addon.getSetting("enableMusicSync") == "true"
|
||||||
dbSyncIndication = addon.getSetting("dbSyncIndication") == "true"
|
dbSyncIndication = addon.getSetting("dbSyncIndication") == "true"
|
||||||
|
|
||||||
### BUILD VIDEO NODES LISTING ###
|
### BUILD VIDEO NODES LISTING ###
|
||||||
VideoNodes().buildVideoNodesListing()
|
VideoNodes().buildVideoNodesListing()
|
||||||
### CREATE SOURCES ###
|
### CREATE SOURCES ###
|
||||||
|
@ -72,7 +72,7 @@ class LibrarySync(threading.Thread):
|
||||||
# Only create sources once
|
# Only create sources once
|
||||||
self.logMsg("Sources.xml created.", 0)
|
self.logMsg("Sources.xml created.", 0)
|
||||||
utils.createSources()
|
utils.createSources()
|
||||||
addon.setSetting("Sources", "true")
|
addon.setSetting("Sources", "true")
|
||||||
|
|
||||||
# just do a incremental sync if that is what is required
|
# 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"):
|
||||||
|
|
Loading…
Reference in a new issue