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(' ')); }