fix building missing vid ids list

This commit is contained in:
simon 2022-03-18 22:11:41 +07:00
parent ac9df4e082
commit a7945e30e3
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4
1 changed files with 1 additions and 3 deletions

View File

@ -63,9 +63,7 @@ def update_subscribed():
missing_from_playlists = playlist_handler.find_missing()
missing = missing_from_channels + missing_from_playlists
if missing:
youtube_ids = [
{"type": "video", "url": i["youtube_id"]} for i in missing
]
youtube_ids = [{"type": "video", "url": i} for i in missing]
pending_handler = PendingList(youtube_ids=youtube_ids)
pending_handler.parse_url_list()
pending_handler.add_to_pending()