diff --git a/app/soapbox/utils/features.ts b/app/soapbox/utils/features.ts index be3660f79..9f60b5a05 100644 --- a/app/soapbox/utils/features.ts +++ b/app/soapbox/utils/features.ts @@ -251,7 +251,10 @@ const getInstanceFeatures = (instance: Instance) => { ]), /** Whether the accounts who favourited or emoji-reacted to a status can be viewed through the API. */ - exposableReactions: features.includes('exposable_reactions'), + exposableReactions: any([ + v.software === MASTODON, + features.includes('exposable_reactions'), + ]), /** Whether the instance federates. */ federating: federation.get('enabled', true) === true, // Assume true unless explicitly false