diff options
author | James Woglom <j@wogloms.net> | 2022-09-19 15:31:46 -0400 |
---|---|---|
committer | James Woglom <j@wogloms.net> | 2022-09-19 15:40:22 -0400 |
commit | a07e1ed06c65bb473219ba4bf0372aabd35afee4 (patch) | |
tree | c2f1324cbe2ccbd0614ae61168e58bf55989eda6 /ui/src | |
parent | temporarily enable running CI on my forked branch. revert this before merging (diff) | |
download | metube-a07e1ed06c65bb473219ba4bf0372aabd35afee4.tar.gz metube-a07e1ed06c65bb473219ba4bf0372aabd35afee4.tar.bz2 metube-a07e1ed06c65bb473219ba4bf0372aabd35afee4.zip |
bugfix: resolve full base directory before startswith check
Diffstat (limited to 'ui/src')
-rw-r--r-- | ui/src/app/app.component.ts | 1 |
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') { |