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, channelID: string,
messageID: string, messageID: string,
reaction: string, reaction: string,
userId: string userId: string,
) { ) {
RequestManager.delete( RequestManager.delete(
endpoints.CHANNEL_MESSAGE_REACTION_USER( endpoints.CHANNEL_MESSAGE_REACTION_USER(
channelID, channelID,
messageID, messageID,
reaction, reaction,
userId userId,
), ),
); );
} }