mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-04-21 18:43:19 +03:00
Fixed bug where simulated output did not include the base path
This commit is contained in:
@@ -845,7 +845,7 @@ export class MainComponent implements OnInit {
|
|||||||
// gets output
|
// gets output
|
||||||
let output_string_array = ['-o', base_path + '%(title)s' + ext];
|
let output_string_array = ['-o', base_path + '%(title)s' + ext];
|
||||||
if (this.customOutputEnabled && this.customOutput) {
|
if (this.customOutputEnabled && this.customOutput) {
|
||||||
output_string_array = ['-o', this.customOutput + ext];
|
output_string_array = ['-o', base_path + this.customOutput + ext];
|
||||||
}
|
}
|
||||||
// before pushing output, should check if using an external downloader
|
// before pushing output, should check if using an external downloader
|
||||||
if (!this.useDefaultDownloadingAgent && this.customDownloadingAgent === 'aria2c') {
|
if (!this.useDefaultDownloadingAgent && this.customDownloadingAgent === 'aria2c') {
|
||||||
|
|||||||
Reference in New Issue
Block a user