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()