mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
Process updates when nothing is playing
This commit is contained in:
parent
a9e4cebed4
commit
68ad71de6f
1 changed files with 1 additions and 1 deletions
|
@ -744,7 +744,7 @@ class LibrarySync(threading.Thread):
|
||||||
self.incremental_count = 0
|
self.incremental_count = 0
|
||||||
window('emby_kodiScan', clear=True)
|
window('emby_kodiScan', clear=True)
|
||||||
|
|
||||||
if window('emby_dbScan') != "true" and window('emby_shouldStop') != "true":
|
if not xbmc.Player().isPlaying() and 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