From 26b0ca4ffb205a7ada0408bc7323bb6a59e6a97c Mon Sep 17 00:00:00 2001 From: MoojMidge <56883549+MoojMidge@users.noreply.github.com> Date: Tue, 21 Jan 2025 01:22:40 +1100 Subject: [PATCH] Improve threaded data cache access in My Subscriptions #1072 --- resources/lib/youtube_plugin/youtube/client/youtube.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/lib/youtube_plugin/youtube/client/youtube.py b/resources/lib/youtube_plugin/youtube/client/youtube.py index 82f186213..aea240a8b 100644 --- a/resources/lib/youtube_plugin/youtube/client/youtube.py +++ b/resources/lib/youtube_plugin/youtube/client/youtube.py @@ -2033,7 +2033,7 @@ def _get_channels(output, 'kwargs': threaded_output['channel_ids'], 'output': threaded_output, 'threads': threads, - 'limit': 1, + 'limit': None, 'check_inputs': threading.Event(), 'inputs_to_check': {1}, } @@ -2042,7 +2042,7 @@ def _get_channels(output, 'kwargs': threaded_output['playlist_ids'], 'output': threaded_output, 'threads': threads, - 'limit': 1, + 'limit': None, # 'check_inputs': threading.Event(), # 'inputs_to_check': {2}, 'check_inputs': False,