From 44bff55a88f472bd64d5a7cc8c1d2594ebeb2319 Mon Sep 17 00:00:00 2001 From: Isaac Grynsztein Date: Sun, 15 Mar 2020 20:35:51 -0400 Subject: [PATCH] Adds youtube dl args to simulated output --- src/app/main/main.component.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/app/main/main.component.ts b/src/app/main/main.component.ts index 975da5e..9c356ce 100644 --- a/src/app/main/main.component.ts +++ b/src/app/main/main.component.ts @@ -885,6 +885,10 @@ export class MainComponent implements OnInit { full_string_array.push(...additional_params); } + if (this.use_youtubedl_archive) { + full_string_array.push('--download-archive', 'archive.txt'); + } + if (globalArgsExists) { full_string_array = full_string_array.concat(this.globalCustomArgs.split(' ')); }