mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix updates
This commit is contained in:
parent
ca0513e96a
commit
4912022a7e
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue