add thumb dl after rescan

This commit is contained in:
simon 2021-10-14 10:03:54 +07:00
parent bfd51e6804
commit 952bc4f97c
1 changed files with 2 additions and 1 deletions

View File

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