This commit is contained in:
ITOH
2021-04-24 19:38:53 +02:00
parent 03db98cd48
commit 6eec266c60
14 changed files with 30 additions and 46 deletions
+1 -3
View File
@@ -13,10 +13,8 @@ export async function removeReaction(
reaction = reaction.substring(3, reaction.length - 1);
}
const result = await rest.runMethod(
return await rest.runMethod<undefined>(
"delete",
endpoints.CHANNEL_MESSAGE_REACTION_ME(channelId, messageId, reaction),
);
return result;
}