mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-25 02:06:09 +00:00
Make sure incremental sync doesn't start
Do not attempt to start the incremental sync if we are resetting. To review for a more robust method later.
This commit is contained in:
parent
810673cf79
commit
1cdfeefa30
1 changed files with 1 additions and 1 deletions
|
@ -963,7 +963,7 @@ class LibrarySync(threading.Thread):
|
||||||
startupComplete = True
|
startupComplete = True
|
||||||
|
|
||||||
# Process updates
|
# Process updates
|
||||||
if window('emby_dbScan') != "true":
|
if window('emby_dbScan') != "true" and window('emby_shouldStop') != "true":
|
||||||
self.incrementalSync()
|
self.incrementalSync()
|
||||||
|
|
||||||
if window('emby_onWake') == "true" and window('emby_online') == "true":
|
if window('emby_onWake') == "true" and window('emby_online') == "true":
|
||||||
|
|
Loading…
Reference in a new issue