forked from AkkomaGang/akkoma
Fix finmoji title attribute.
This commit is contained in:
parent
7e9647b146
commit
6c70980bff
1 changed files with 1 additions and 1 deletions
|
@ -91,7 +91,7 @@ def finmojifiy(text) do
|
||||||
]
|
]
|
||||||
|
|
||||||
Enum.reduce(emoji_list, text, fn (emoji, text) ->
|
Enum.reduce(emoji_list, text, fn (emoji, text) ->
|
||||||
String.replace(text, ":#{String.replace(emoji, "_", "")}:", "<img height='32px' width='32px' alt='#{emoji}' title='#{emoji}' src='#{Pleroma.Web.Endpoint.static_url}/finmoji/128px/#{emoji}-128.png' />")
|
String.replace(text, ":#{String.replace(emoji, "_", "")}:", "<img height='32px' width='32px' alt='#{emoji}' title='#{String.replace(emoji, "_", "")}' src='#{Pleroma.Web.Endpoint.static_url}/finmoji/128px/#{emoji}-128.png' />")
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue