update yt-dlp, fix channel entries extractor

pull/370/head
simon 2 years ago
parent 5ed80d983d
commit d0124c1a5c
No known key found for this signature in database
GPG Key ID: 2C15AA5E89985DD4

@ -80,12 +80,12 @@ class YoutubePlaylist(YouTubeItem):
downloaded = entry["id"] in self.all_youtube_ids
else:
downloaded = False
if not entry["uploader"]:
if not entry["channel"]:
continue
to_append = {
"youtube_id": entry["id"],
"title": entry["title"],
"uploader": entry["uploader"],
"uploader": entry["channel"],
"idx": idx,
"downloaded": downloaded,
}

@ -10,4 +10,4 @@ requests==2.28.1
ryd-client==0.0.6
uWSGI==2.0.21
whitenoise==6.2.0
yt_dlp==2022.10.4
yt_dlp==2022.11.11

Loading…
Cancel
Save