diff --git a/src/managers/GuildChannelManager.js b/src/managers/GuildChannelManager.js index 75eebde0d9af..93c6e6d859f0 100644 --- a/src/managers/GuildChannelManager.js +++ b/src/managers/GuildChannelManager.js @@ -435,7 +435,7 @@ class GuildChannelManager extends CachedManager { async delete(channel, reason) { const id = this.resolveId(channel); if (!id) throw new TypeError('INVALID_TYPE', 'channel', 'GuildChannelResolvable'); - await this.client.api.channels(this.id).delete({ reason }); + await this.client.api.channels(id).delete({ reason }); } }