From 20e7ec7c84fe9d17cc7cf1cb7edab84f81258927 Mon Sep 17 00:00:00 2001 From: Isaac Abadi Date: Sun, 27 Nov 2022 12:11:25 -0500 Subject: [PATCH] Fixed issue where simulated output would only appear after a change is made to args --- src/app/main/main.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/main/main.component.ts b/src/app/main/main.component.ts index 9d2e22f..3f9755b 100644 --- a/src/app/main/main.component.ts +++ b/src/app/main/main.component.ts @@ -237,6 +237,8 @@ export class MainComponent implements OnInit { if (customArgs && customArgs !== 'null') { this.customArgs = customArgs } if (customOutput && customOutput !== 'null') { this.customOutput = customOutput } if (youtubeUsername && youtubeUsername !== 'null') { this.youtubeUsername = youtubeUsername } + + this.getSimulatedOutput(); } // get downloads routine