mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-06 08:22:24 +01:00
feature (mpeg): mpeg audio
This commit is contained in:
parent
9051221e0c
commit
daa026a340
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ export function opener(file = "", mimes) {
|
|||
} else if (["application/javascript", "application/xml", "application/json",
|
||||
"application/x-perl"].indexOf(mime) !== -1) {
|
||||
return ["editor", { mime }];
|
||||
} else if (["audio/wave", "audio/mp3", "audio/flac", "audio/ogg"].indexOf(mime) !== -1) {
|
||||
} else if (["audio/wave", "audio/mp3", "audio/flac", "audio/ogg", "audio/mpeg"].indexOf(mime) !== -1) {
|
||||
return ["audio", { mime }];
|
||||
} else if (mime === "application/x-form") {
|
||||
return ["form", { mime }];
|
||||
|
|
|
|||
Loading…
Reference in a new issue