AttachmentValidator: Check if the mime type is valid.

This commit is contained in:
lain 2020-06-07 09:19:00 +02:00
parent 40fc4e974e
commit 0365053c8d
1 changed files with 2 additions and 2 deletions

View File

@ -45,11 +45,11 @@ defmodule Pleroma.Web.ActivityPub.ObjectValidators.AttachmentValidator do
data
|> Map.put_new("mediaType", data["mimeType"])
if data["mediaType"] == "" do
if MIME.valid?(data["mediaType"]) do
data
|> Map.put("mediaType", "application/octet-stream")
else
data
|> Map.put("mediaType", "application/octet-stream")
end
end