summary refs log tree commit diff
path: root/src/api
diff options
context:
space:
mode:
authorMathMan05 <mathmanrm@gmail.com>2026-03-06 22:47:07 -0600
committerRory& <root@rory.gay>2026-03-15 14:46:54 +0100
commita408fdfdf12994f05942f12fb6f00e0153b72736 (patch)
treede01c757daf39b7c76056c9f5629e9aef6cd4253 /src/api
parentFix adding reactions (diff)
downloadserver-ts-a408fdfdf12994f05942f12fb6f00e0153b72736.tar.xz
give remove the same treatment
Diffstat (limited to 'src/api')
-rw-r--r--src/api/routes/channels/#channel_id/messages/#message_id/reactions.ts6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/api/routes/channels/#channel_id/messages/#message_id/reactions.ts b/src/api/routes/channels/#channel_id/messages/#message_id/reactions.ts

index 6871c3aa..c3ac0835 100644 --- a/src/api/routes/channels/#channel_id/messages/#message_id/reactions.ts +++ b/src/api/routes/channels/#channel_id/messages/#message_id/reactions.ts
@@ -300,8 +300,9 @@ router.delete( message_id, guild_id: channel.guild_id, emoji, + type: ReactionType.normal, }, - } as MessageReactionRemoveEvent); + } satisfies MessageReactionRemoveEvent); res.sendStatus(204); }, @@ -357,8 +358,9 @@ router.delete( message_id, guild_id: channel.guild_id, emoji, + type: ReactionType.normal, }, - } as MessageReactionRemoveEvent); + } satisfies MessageReactionRemoveEvent); res.sendStatus(204); },