Update message.ts

This commit is contained in:
TriForMine
2020-08-21 12:25:39 +02:00
committed by GitHub
parent a7dffbe5c6
commit 4222171e7f
+2 -2
View File
@@ -114,14 +114,14 @@ export function removeUserReaction(
channelID: string,
messageID: string,
reaction: string,
userId: string
userId: string,
) {
RequestManager.delete(
endpoints.CHANNEL_MESSAGE_REACTION_USER(
channelID,
messageID,
reaction,
userId
userId,
),
);
}