aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/app.component.ts
diff options
context:
space:
mode:
authorJames Woglom <j@wogloms.net>2022-09-19 15:00:26 -0400
committerJames Woglom <j@wogloms.net>2022-09-19 15:00:26 -0400
commit202813b9edf26ee269ef808f86f1bc646782d7a9 (patch)
tree76aeeac124bc35f63199b05522819dcb6c7c86f5 /ui/src/app/app.component.ts
parentremove unneeded stylePreprocessorOptions (diff)
downloadmetube-202813b9edf26ee269ef808f86f1bc646782d7a9.tar.gz
metube-202813b9edf26ee269ef808f86f1bc646782d7a9.tar.bz2
metube-202813b9edf26ee269ef808f86f1bc646782d7a9.zip
CREATE_DIRS -> CREATE_CUSTOM_DIRS
Diffstat (limited to 'ui/src/app/app.component.ts')
-rw-r--r--ui/src/app/app.component.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/app/app.component.ts b/ui/src/app/app.component.ts
index 97ff020..eae1ba9 100644
--- a/ui/src/app/app.component.ts
+++ b/ui/src/app/app.component.ts
@@ -86,7 +86,7 @@ export class AppComponent implements AfterViewInit {
}
allowCustomDir() {
- return this.downloads.configuration['CREATE_DIRS'] == 'true';
+ return this.downloads.configuration['CREATE_CUSTOM_DIRS'] == 'true';
}
isAudioType() {
bgstack15