From 952bc4f97cd0460a652ddce370460fd890a9df5f Mon Sep 17 00:00:00 2001 From: simon Date: Thu, 14 Oct 2021 10:03:54 +0700 Subject: [PATCH] add thumb dl after rescan --- tubearchivist/home/tasks.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tubearchivist/home/tasks.py b/tubearchivist/home/tasks.py index 9c6c9e7..b68a6b7 100644 --- a/tubearchivist/home/tasks.py +++ b/tubearchivist/home/tasks.py @@ -38,7 +38,8 @@ def update_subscribed(): missing_videos = channel_handler.find_missing() if missing_videos: pending_handler = PendingList() - pending_handler.add_to_pending(missing_videos) + all_videos_added = pending_handler.add_to_pending(missing_videos) + ThumbManager().download_vid(all_videos_added) # check if reindex is needed check_reindex.delay()