Transmogrifier: Extend misskey like compatibility.

This commit is contained in:
lain 2019-10-05 10:45:42 +02:00
commit 6a85f7d1ea
2 changed files with 22 additions and 2 deletions

View file

@ -570,7 +570,8 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
"angry" => "💢",
"confused" => "😥",
"rip" => "😇",
"pudding" => "🍮"
"pudding" => "🍮",
"star" => ""
}
@doc "Rewrite misskey likes into EmojiReactions"
@ -583,7 +584,7 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
) do
data
|> Map.put("type", "EmojiReaction")
|> Map.put("content", @misskey_reactions[reaction])
|> Map.put("content", @misskey_reactions[reaction] || reaction)
|> handle_incoming(options)
end