aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/app.component.ts
diff options
context:
space:
mode:
authorJames Woglom <j@wogloms.net>2022-09-19 15:31:46 -0400
committerJames Woglom <j@wogloms.net>2022-09-19 15:40:22 -0400
commita07e1ed06c65bb473219ba4bf0372aabd35afee4 (patch)
treec2f1324cbe2ccbd0614ae61168e58bf55989eda6 /ui/src/app/app.component.ts
parenttemporarily enable running CI on my forked branch. revert this before merging (diff)
downloadmetube-a07e1ed06c65bb473219ba4bf0372aabd35afee4.tar.gz
metube-a07e1ed06c65bb473219ba4bf0372aabd35afee4.tar.bz2
metube-a07e1ed06c65bb473219ba4bf0372aabd35afee4.zip
bugfix: resolve full base directory before startswith check
Diffstat (limited to 'ui/src/app/app.component.ts')
-rw-r--r--ui/src/app/app.component.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/src/app/app.component.ts b/ui/src/app/app.component.ts
index eae1ba9..20db8b8 100644
--- a/ui/src/app/app.component.ts
+++ b/ui/src/app/app.component.ts
@@ -156,6 +156,7 @@ export class AppComponent implements AfterViewInit {
format = format ?? this.format
folder = folder ?? this.folder
+ console.debug('Downloading: url='+url+' quality='+quality+' format='+format+' folder='+folder);
this.addInProgress = true;
this.downloads.add(url, quality, format, folder).subscribe((status: Status) => {
if (status.status === 'error') {
bgstack15