From: marcin mikołajczak Date: Thu, 9 Sep 2021 18:35:45 +0000 (+0000) Subject: Add "exposable_reactions" to features, if showing reactions X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=555d7d57c9a408185617268ca810002cbd59f764;p=akkoma Add "exposable_reactions" to features, if showing reactions --- diff --git a/lib/pleroma/web/mastodon_api/views/instance_view.ex b/lib/pleroma/web/mastodon_api/views/instance_view.ex index ef208062b..70305b1c1 100644 --- a/lib/pleroma/web/mastodon_api/views/instance_view.ex +++ b/lib/pleroma/web/mastodon_api/views/instance_view.ex @@ -83,7 +83,10 @@ defmodule Pleroma.Web.MastodonAPI.InstanceView do "safe_dm_mentions" end, "pleroma_emoji_reactions", - "pleroma_chat_messages" + "pleroma_chat_messages", + if Config.get([:instance, :show_reactions]) do + "exposable_reactions" + end ] |> Enum.filter(& &1) end