X-Git-Url: http://git.squeep.com/?a=blobdiff_plain;f=lib%2Fpleroma%2Fweb%2Ftwitter_api%2Futils.ex;h=82e3620f2a38e6d31e1de6785923335617399037;hb=48f9df2391557db6a9f9dae37b9d39d6cd5f612a;hp=6f5c9f72722afac75f77432026c449b89a456c6c;hpb=9033bfffd260968088648bf321db23ee94778a14;p=akkoma diff --git a/lib/pleroma/web/twitter_api/utils.ex b/lib/pleroma/web/twitter_api/utils.ex index 6f5c9f727..82e3620f2 100644 --- a/lib/pleroma/web/twitter_api/utils.ex +++ b/lib/pleroma/web/twitter_api/utils.ex @@ -11,16 +11,16 @@ defmodule Pleroma.Web.TwitterAPI.Utils do def add_attachments(text, attachments) do attachment_text = Enum.map(attachments, fn (%{"url" => [%{"href" => href} | _]}) -> - "#{href}" + "#{Path.basename(href)}" _ -> "" end) - Enum.join([text | attachment_text], "
") + Enum.join([text | attachment_text], "
\n") end def format_input(text, mentions) do HtmlSanitizeEx.strip_tags(text) |> Formatter.linkify - |> String.replace("\n", "
") + |> String.replace("\n", "
\n") |> add_user_links(mentions) end @@ -51,14 +51,15 @@ defmodule Pleroma.Web.TwitterAPI.Utils do def make_context(%Activity{data: %{"context" => context}}), do: context def make_context(_), do: Utils.generate_context_id - def make_note_data(actor, to, context, content_html, attachments, inReplyTo) do + def make_note_data(actor, to, context, content_html, attachments, inReplyTo, tags) do object = %{ "type" => "Note", "to" => to, "content" => content_html, "context" => context, "attachment" => attachments, - "actor" => actor + "actor" => actor, + "tag" => tags |> Enum.map(fn ({_, tag}) -> tag end) } if inReplyTo do