aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app/app.component.ts
diff options
context:
space:
mode:
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