diff --git a/src/structures/Channel.js b/src/structures/Channel.js index 6db653e96ff8..3c0c0ed5ae2c 100644 --- a/src/structures/Channel.js +++ b/src/structures/Channel.js @@ -93,11 +93,9 @@ class Channel extends Base { * .then(console.log) * .catch(console.error); */ - delete() { - return this.client.api - .channels(this.id) - .delete() - .then(() => this); + async delete() { + await this.client.api.channels(this.id).delete(); + return this; } /**