From 763fd696ef100ae46d980f6656b90ef9905461c8 Mon Sep 17 00:00:00 2001 From: Haelwenn Date: Wed, 2 Dec 2020 16:54:08 +0000 Subject: Apply 1 suggestion(s) to 1 file(s) --- lib/pleroma/emoji.ex | 9 +++------ 1 file 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 -- cgit v1.2.3