From 4992f4ab200a0d8d5d8770da179be9cec2e51a97 Mon Sep 17 00:00:00 2001 From: diamondburned Date: Sat, 14 Nov 2020 16:32:16 -0800 Subject: [PATCH] API: Fixed incorrect DeleteAllReactions endpoint --- api/message_reaction.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/message_reaction.go b/api/message_reaction.go index c2bfc46..05b5da1 100644 --- a/api/message_reaction.go +++ b/api/message_reaction.go @@ -209,6 +209,6 @@ func (c *Client) DeleteReactions( func (c *Client) DeleteAllReactions(channelID discord.ChannelID, messageID discord.MessageID) error { return c.FastRequest( "DELETE", - EndpointChannels+channelID.String()+"/messages/"+messageID.String()+"/reactions/", + EndpointChannels+channelID.String()+"/messages/"+messageID.String()+"/reactions", ) }