Add emoji_url to notifications to allow rendering
[akkoma] / lib / pleroma / web / mastodon_api / views / notification_view.ex
index 35c636d4e8c24679ae5be3a5c87ecbd703d49272..ff7adeb2b303e6ead43e32697f8569bc2266b6d5 100644 (file)
@@ -138,7 +138,9 @@ defmodule Pleroma.Web.MastodonAPI.NotificationView do
   end
 
   defp put_emoji(response, activity) do
-    Map.put(response, :emoji, activity.data["content"])
+    response
+    |> Map.put(:emoji, activity.data["content"])
+    |> Map.put(:emoji_url, Pleroma.Emoji.emoji_url(activity.data))
   end
 
   defp put_chat_message(response, activity, reading_user, opts) do