From a5c47737c7179d01b12307054c86e7ee0edeea42 Mon Sep 17 00:00:00 2001 From: Isaac Grynsztein Date: Wed, 25 Mar 2020 23:27:51 -0400 Subject: [PATCH] Fixed bug where simulated output did not include the base path --- src/app/main/main.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/main/main.component.ts b/src/app/main/main.component.ts index aa2133e..9df19d6 100644 --- a/src/app/main/main.component.ts +++ b/src/app/main/main.component.ts @@ -845,7 +845,7 @@ export class MainComponent implements OnInit { // gets output let output_string_array = ['-o', base_path + '%(title)s' + ext]; 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 if (!this.useDefaultDownloadingAgent && this.customDownloadingAgent === 'aria2c') {