Recognize the standard MIME type for uploaded FLAC audio (#1290)

Before this change, Koel only recognized the non-standard MIME type audio/x-flac.

Server-side portion of https://github.com/koel/core/pull/53.
This commit is contained in:
Tony Wasserka 2021-04-11 17:51:36 +00:00 committed by GitHub
parent 0250970de0
commit c9446c4adb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ class UploadRequest extends AbstractRequest
'file' => [
'required',
'file',
'mimetypes:audio/mpeg,audio/ogg,audio/x-flac,audio/x-aac',
'mimetypes:audio/flac,audio/mpeg,audio/ogg,audio/x-flac,audio/x-aac',
],
];
}