skip video not part of channel, #741

This commit is contained in:
Simon
2024-06-06 19:17:53 +02:00
parent e8691a8edb
commit 9f484eca83

View File

@@ -324,6 +324,10 @@ class PendingList(PendingIndex):
else:
vid_type = VideoTypeEnum.VIDEOS
if not vid.get("channel"):
print(f"{youtube_id}: skip video not part of channel")
return False
return self._parse_youtube_details(vid, vid_type)
@staticmethod