Merge branch 'file-type-service-fix' into 'develop'

Modify filetype service to accept more generic mimetypes

See merge request pleroma/pleroma-fe!381
This commit is contained in:
lambda 2018-12-01 08:35:51 +00:00
commit e15b9bddbb
1 changed files with 2 additions and 2 deletions

View File

@ -9,11 +9,11 @@ const fileType = (typeString) => {
type = 'image' type = 'image'
} }
if (typeString.match(/video\/(webm|mp4)/)) { if (typeString.match(/video/)) {
type = 'video' type = 'video'
} }
if (typeString.match(/audio|ogg/)) { if (typeString.match(/audio/)) {
type = 'audio' type = 'audio'
} }