From b878a0e433033395518ba7c00893333865374a0a Mon Sep 17 00:00:00 2001 From: Chuddah Date: Sun, 16 Feb 2020 22:56:46 +0000 Subject: [PATCH] Added download thread to the download_threads when created. --- jellyfin_kodi/library.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jellyfin_kodi/library.py b/jellyfin_kodi/library.py index 180ece7d..29d4ea99 100644 --- a/jellyfin_kodi/library.py +++ b/jellyfin_kodi/library.py @@ -231,6 +231,7 @@ class Library(threading.Thread): new_thread = GetItemWorker(self.server, queue[0], queue[1]) new_thread.start() LOG.info("-->[ q:download/%s ]", id(new_thread)) + self.download_threads.append(new_thread) def worker_sort(self):