UI & logs now use proper fork name rather than just youtube-dl

This commit is contained in:
Isaac Abadi
2022-06-25 17:22:08 -04:00
parent 19a3ffc118
commit 86cbfea08f
6 changed files with 19 additions and 19 deletions

View File

@@ -591,7 +591,8 @@ export class MainComponent implements OnInit {
if (passwordIndex !== -1 && passwordIndex !== simulated_args.length - 1) {
simulated_args[passwordIndex + 1] = simulated_args[passwordIndex + 1].replace(/./g, '*');
}
this.simulatedOutput = `youtube-dl ${this.url} ${simulated_args.join(' ')}`;
const downloader = this.postsService.config.Advanced.default_downloader;
this.simulatedOutput = `${downloader} ${this.url} ${simulated_args.join(' ')}`;
}
});
}