forked from AkkomaGang/akkoma-fe
Fix filetype detection
This commit is contained in:
parent
91272dc555
commit
cddb173089
1 changed files with 2 additions and 2 deletions
|
@ -9,11 +9,11 @@ const fileType = (typeString) => {
|
|||
type = 'image'
|
||||
}
|
||||
|
||||
if (typeString.match(/video\/(webm|mp4)/)) {
|
||||
if (typeString.match(/video/)) {
|
||||
type = 'video'
|
||||
}
|
||||
|
||||
if (typeString.match(/audio|ogg/)) {
|
||||
if (typeString.match(/audio/)) {
|
||||
type = 'audio'
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue