1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2025-03-25 03:19:20 +00:00

API: Fixed incorrect DeleteAllReactions endpoint

This commit is contained in:
diamondburned 2020-11-14 16:32:16 -08:00
parent 38d7af77f9
commit 0cb65e88a8

View file

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