chore(Deps): upgrade deps (#4701)

This commit is contained in:
Noel
2020-08-14 21:46:23 +02:00
committed by GitHub
parent 178439ef8c
commit dea48d64a5
12 changed files with 11320 additions and 51 deletions

View File

@@ -121,10 +121,7 @@ class MessageManager extends BaseManager {
async delete(message, reason) {
message = this.resolveID(message);
if (message) {
await this.client.api
.channels(this.channel.id)
.messages(message)
.delete({ reason });
await this.client.api.channels(this.channel.id).messages(message).delete({ reason });
}
}