mirror of
https://github.com/danbulant/discord.js
synced 2026-05-24 20:42:27 +00:00
fix remove reactions return (#961)
This commit is contained in:
parent
a0de75f290
commit
275d9d3ce0
1 changed files with 1 additions and 1 deletions
|
|
@ -630,7 +630,7 @@ class RESTMethods {
|
|||
}
|
||||
|
||||
removeMessageReactions(message) {
|
||||
this.rest.makeRequest('delete', Constants.Endpoints.messageReactions(message.channel.id, message.id), true)
|
||||
return this.rest.makeRequest('delete', Constants.Endpoints.messageReactions(message.channel.id, message.id), true)
|
||||
.then(() => message);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue