mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +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
|
||||
|
||||
# Process updates
|
||||
if window('emby_dbScan') != "true":
|
||||
if window('emby_dbScan') != "true" and window('emby_shouldStop') != "true":
|
||||
self.incrementalSync()
|
||||
|
||||
if window('emby_onWake') == "true" and window('emby_online') == "true":
|
||||
|
|
Loading…
Reference in a new issue