consistency with rest of lib

This commit is contained in:
Skillz4Killz
2020-08-21 09:16:01 -04:00
committed by GitHub
parent cdc0572ed7
commit 3023b728de
+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,
), ),
); );
} }