Get correct mimetype through entity_normalizer

This commit is contained in:
taehoon 2019-03-17 23:23:59 -04:00
parent 966add1b29
commit 909c315a44
2 changed files with 3 additions and 4 deletions

View File

@ -292,7 +292,7 @@ const PostStatusForm = {
this.submitDisabled = false
},
type (fileInfo) {
return fileTypeService.fileType(fileInfo.pleroma.mime_type)
return fileTypeService.fileType(fileInfo.mimetype)
},
paste (e) {
if (e.clipboardData.files.length > 0) {

View File

@ -128,13 +128,12 @@ export const parseUser = (data) => {
return output
}
const parseAttachment = (data) => {
export const parseAttachment = (data) => {
const output = {}
const masto = !data.hasOwnProperty('oembed')
if (masto) {
// Not exactly same...
output.mimetype = data.type
output.mimetype = data.pleroma.mime_type
output.meta = data.meta // not present in BE yet
} else {
output.mimetype = data.mimetype