From 7849eb8735c8e31fc2289c0aaaaedfcf27db0f9e Mon Sep 17 00:00:00 2001 From: ArabCoders Date: Sat, 15 Mar 2025 01:00:27 +0300 Subject: [PATCH] make break_on_existing optional and overridable by user. --- app/library/Download.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/library/Download.py b/app/library/Download.py index 84d8d3be..7f794e89 100644 --- a/app/library/Download.py +++ b/app/library/Download.py @@ -119,6 +119,7 @@ class Download: params = ( YTDLPOpts.get_instance() .preset(self.preset) + .add({"break_on_existing": True}) .add(self.ytdl_opts, from_user=True) .add( { @@ -132,7 +133,6 @@ class Download: "chapter": self.template_chapter, }, "noprogress": True, - "break_on_existing": True, "ignoreerrors": False, }, from_user=False,