1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2025-01-07 01:55:30 +01:00

AttachmentValidator: fix_media_type/1 fallback to application/octet-stream

This commit is contained in:
Haelwenn (lanodan) Monnier 2022-07-22 20:22:44 +02:00
parent 09e0304b9c
commit eba1666575

View File

@ -59,7 +59,7 @@ defmodule Pleroma.Web.ActivityPub.ObjectValidators.AttachmentValidator do
end
def fix_media_type(data) do
Map.put_new(data, "mediaType", data["mimeType"])
Map.put_new(data, "mediaType", data["mimeType"] || "application/octet-stream")
end
defp handle_href(href, mediaType, data) do