Add emoji support in statuses in staticfe

This commit is contained in:
Egor Kislitsyn 2020-03-23 14:03:31 +04:00
parent 7dbf1ffa86
commit 5a34dca8ed
No known key found for this signature in database
GPG Key ID: 1B49CB15B71E7805
2 changed files with 3 additions and 1 deletions

View File

@ -60,7 +60,9 @@ defp represent(%Activity{object: %Object{data: data}} = activity, selected) do
content =
if data["content"] do
Pleroma.HTML.filter_tags(data["content"])
data["content"]
|> Pleroma.HTML.filter_tags()
|> Pleroma.Emoji.Formatter.emojify(Map.get(data, "emoji", %{}))
else
nil
end

Binary file not shown.