Add missing m4a checks for audio file

This commit is contained in:
georgekav
2023-02-20 14:35:55 +01:00
parent 821451b301
commit 07be2c054f
2 changed files with 2 additions and 2 deletions

View File

@@ -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[]> {