fix compilation warnings
ci/woodpecker/push/woodpecker Pipeline is pending Details

This commit is contained in:
FloatingGhost 2022-09-05 00:39:32 +01:00
parent 1b826eea54
commit 1c7d7845c3
1 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ defmodule Pleroma.Web.ActivityPub.Builder do
end
defp remote_custom_emoji_react(
%{data: %{"reactions" => existing_reactions}} = object,
%{data: %{"reactions" => existing_reactions}},
data,
emoji
) do
@ -103,7 +103,7 @@ defmodule Pleroma.Web.ActivityPub.Builder do
end
end
defp remote_custom_emoji_react(_object, data, emoji) do
defp remote_custom_emoji_react(_object, _data, _emoji) do
{:error, "Could not react"}
end