From 092c467a2e98745bd5e55bb9b7ecd1df1477eb23 Mon Sep 17 00:00:00 2001 From: simon Date: Thu, 12 Jan 2023 16:49:45 +0700 Subject: [PATCH] default to videos vid_type in get_youtube_details --- tubearchivist/home/src/download/queue.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tubearchivist/home/src/download/queue.py b/tubearchivist/home/src/download/queue.py index 9e62841c..ca7487c2 100644 --- a/tubearchivist/home/src/download/queue.py +++ b/tubearchivist/home/src/download/queue.py @@ -271,6 +271,8 @@ class PendingList(PendingIndex): else: if self._check_shorts(vid): vid_type = VideoTypeEnum.SHORTS + else: + vid_type = VideoTypeEnum.VIDEOS return self._parse_youtube_details(vid, vid_type)