Apply 1 suggestion(s) to 1 file(s)

This commit is contained in:
Haelwenn 2020-12-02 16:54:08 +00:00
parent 7fef71c387
commit 763fd696ef

View File

@ -106,12 +106,9 @@ defmodule Pleroma.Emoji do
@emoji_reactions File.read!(@external_resource)
|> Jason.decode!()
|> Enum.reduce(%{}, fn {name, codepoint}, acc ->
Map.put(
acc,
String.downcase(name),
[codepoint |> String.to_integer(16)] |> String.Chars.to_string()
)
|> Map.new(fn {name, codepoint} ->
{String.downcase(name),
[codepoint |> String.to_integer(16)] |> String.Chars.to_string()}
end)
# Consider putting the emoji as the key if that's fine with PleromaFE