diff options
-rw-r--r-- | lib/pleroma/emoji.ex | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lib/pleroma/emoji.ex b/lib/pleroma/emoji.ex index a9767c1ea..9f2e98f08 100644 --- a/lib/pleroma/emoji.ex +++ b/lib/pleroma/emoji.ex @@ -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 |