Return mimetype with attachment.
[akkoma] / lib / pleroma / upload.ex
index 158656e92ea117674aadabe89fd149aeeb9a02e0..d22421d37049d8d4892037b83c89b90718a995a5 100644 (file)
@@ -8,7 +8,11 @@ defmodule Pleroma.Upload do
 
     %{
       "type" => "Image",
-      "href" => url_for(Path.join(uuid, file.filename)),
+      "url" => [%{
+        "type" => "Link",
+        "mediaType" => file.content_type,
+        "href" => url_for(Path.join(uuid, file.filename))
+      }],
       "name" => file.filename,
       "uuid" => uuid
     }