From 63eeeca910494c80ee37d66ba8e574ea954a05d9 Mon Sep 17 00:00:00 2001 From: rlaphoenix Date: Sun, 26 Mar 2023 20:13:52 +0100 Subject: [PATCH] Fix regression where all videos are selected if --quality isnt used --- devine/commands/dl.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/devine/commands/dl.py b/devine/commands/dl.py index 9da5d13..381bb23 100644 --- a/devine/commands/dl.py +++ b/devine/commands/dl.py @@ -395,6 +395,8 @@ class dl: plural = "s" if len(missing_resolutions) > 1 else "" self.log.error(f"There's no {res_list} Video Track{plural}...") sys.exit(1) + else: + title.tracks.videos = [title.tracks.videos[0]] # filter subtitle tracks if s_lang and "all" not in s_lang: