From 9f484eca83e1532266b994d63d5a979bbcdbf52d Mon Sep 17 00:00:00 2001 From: Simon Date: Thu, 6 Jun 2024 19:17:53 +0200 Subject: [PATCH] skip video not part of channel, #741 --- tubearchivist/home/src/download/queue.py | 4 ++++ 1 file changed, 4 insertions(+) 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