diff --git a/tubearchivist/home/src/download/queue.py b/tubearchivist/home/src/download/queue.py index 661f39b9..5f0a86bb 100644 --- a/tubearchivist/home/src/download/queue.py +++ b/tubearchivist/home/src/download/queue.py @@ -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