1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-10-01 06:48:51 +00:00

API: Fixed incorrect DeleteAllReactions endpoint

This commit is contained in:
diamondburned 2020-11-14 16:32:16 -08:00
parent 1aaa2cbfe2
commit 4992f4ab20

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