common api: prefer formatting attachments using the attachment's name instead of URI
authorWilliam Pitcock <nenolod@dereferenced.org>
Mon, 29 Oct 2018 17:59:24 +0000 (17:59 +0000)
committerWilliam Pitcock <nenolod@dereferenced.org>
Mon, 29 Oct 2018 17:59:24 +0000 (17:59 +0000)
lib/pleroma/web/common_api/utils.ex

index ed1fe1ad9dda979d1ba9098eb128c6b4c805239f..2a5a2cc15fcfb53efe6f2d3f7a5e00060a1d21dd 100644 (file)
@@ -89,8 +89,8 @@ defmodule Pleroma.Web.CommonAPI.Utils do
   def add_attachments(text, attachments) do
     attachment_text =
       Enum.map(attachments, fn
-        %{"url" => [%{"href" => href} | _]} ->
-          name = URI.decode(Path.basename(href))
+        %{"url" => [%{"href" => href} | _]} = attachment ->
+          name = attachment["name"] || URI.decode(Path.basename(href))
           href = MediaProxy.url(href)
           "<a href=\"#{href}\" class='attachment'>#{shortname(name)}</a>"