forked from AkkomaGang/akkoma
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:
commit
4b06e46a3a
1 changed files with 1 additions and 1 deletions
|
@ -95,7 +95,7 @@ def add_user_links(text, mentions) do
|
||||||
|
|
||||||
Enum.reduce(mentions, step_one, fn ({match, %User{ap_id: ap_id}, uuid}, text) ->
|
Enum.reduce(mentions, step_one, fn ({match, %User{ap_id: ap_id}, uuid}, text) ->
|
||||||
short_match = String.split(match, "@") |> tl() |> hd()
|
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)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue