escape attachment urls on creation.

This commit is contained in:
Roger Braun 2017-08-09 16:55:18 +02:00
commit 7d34cec58d
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ defmodule Pleroma.Web.TwitterAPI.Utils do
def add_attachments(text, attachments) do
attachment_text = Enum.map(attachments, fn
(%{"url" => [%{"href" => href} | _]}) ->
"<a href=\"#{URI.encode(href)}\" class='attachment'>#{Path.basename(href)}</a>"
"<a href=\"#{href}\" class='attachment'>#{Path.basename(href)}</a>"
_ -> ""
end)
Enum.join([text | attachment_text], "<br>\n")