From 4912022a7e3786c847b392bb128ad727ed9eb942 Mon Sep 17 00:00:00 2001 From: angelblue05 Date: Mon, 19 Nov 2018 00:12:46 -0600 Subject: [PATCH] Fix updates --- resources/lib/library.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/lib/library.py b/resources/lib/library.py index 8834fe9d..7330e357 100644 --- a/resources/lib/library.py +++ b/resources/lib/library.py @@ -129,7 +129,7 @@ class Library(threading.Thread): if thread.is_done: threads.remove(thread) - if (self.player.isPlayingVideo() and settings('syncDuringPlay.bool')) or xbmc.getCondVisibility('VideoPlayer.Content(livetv)'): + if not self.player.isPlayingVideo() or settings('syncDuringPlay.bool') or xbmc.getCondVisibility('VideoPlayer.Content(livetv)'): self.worker_downloads() self.worker_sort()