diff options
author | georgekav <> | 2023-02-20 14:35:55 +0100 |
---|---|---|
committer | georgekav <> | 2023-02-20 14:35:55 +0100 |
commit | 07be2c054f40ee099506d79af242c6a51749a572 (patch) | |
tree | 75416c46029615231e8bc09403a125352ac63482 /ui/src | |
parent | Add M4A backend support. (diff) | |
download | metube-07be2c054f40ee099506d79af242c6a51749a572.tar.gz metube-07be2c054f40ee099506d79af242c6a51749a572.tar.bz2 metube-07be2c054f40ee099506d79af242c6a51749a572.zip |
Add missing m4a checks for audio file
Diffstat (limited to 'ui/src')
-rw-r--r-- | ui/src/app/app.component.ts | 2 |
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[]> { |