Adds youtube dl args to simulated output

This commit is contained in:
Isaac Grynsztein
2020-03-15 20:35:51 -04:00
parent d39f6f7a17
commit 44bff55a88

View File

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