Merge branch 'fix/tootdon-mentions' into 'develop'

Fix Tootdon linking the whole status when mentioning someone.

See merge request pleroma/pleroma!39
This commit is contained in:
lambda 2017-12-11 16:21:43 +00:00
commit 4b06e46a3a

View file

@ -95,7 +95,7 @@ defmodule Pleroma.Web.CommonAPI.Utils do
Enum.reduce(mentions, step_one, fn ({match, %User{ap_id: ap_id}, uuid}, text) ->
short_match = String.split(match, "@") |> tl() |> hd()
String.replace(text, uuid, "<a href='#{ap_id}'>@#{short_match}</a>")
String.replace(text, uuid, "<span><a href='#{ap_id}'>@<span>#{short_match}</span></a></span>")
end)
end