diff --git a/src/utils/features.ts b/src/utils/features.ts index 7c44458a4..68b264428 100644 --- a/src/utils/features.ts +++ b/src/utils/features.ts @@ -463,7 +463,10 @@ const getInstanceFeatures = (instance: Instance) => { * @see GET /api/v1/pleroma/statuses/:id/reactions/:emoji? * @see DELETE /api/v1/pleroma/statuses/:id/reactions/:emoji */ - emojiReacts: v.software === PLEROMA && gte(v.version, '2.0.0'), + emojiReacts: any([ + v.software === PLEROMA && gte(v.version, '2.0.0'), + v.software === DITTO, + ]), /** * Ability to add emoji reactions to a status available in Mastodon forks.