API: Fixed incorrect DeleteAllReactions endpoint

This commit is contained in:
diamondburned 2020-11-14 16:32:16 -08:00
parent 1aaa2cbfe2
commit 4992f4ab20
1 changed files with 1 additions and 1 deletions

View File

@ -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",
)
}