aboutsummaryrefslogtreecommitdiff
path: root/ui/src/app
diff options
context:
space:
mode:
Diffstat (limited to 'ui/src/app')
-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 7038b68..5cbb84c 100644
--- a/ui/src/app/app.component.ts
+++ b/ui/src/app/app.component.ts
@@ -94,7 +94,7 @@ export class AppComponent implements AfterViewInit {
}
isAudioType() {
- return this.quality == 'audio' || this.format == 'mp3';
+ return this.quality == 'audio' || this.format == 'mp3' || this.format == 'm4a';
}
getMatchingCustomDir() : Observable<string[]> {
bgstack15