diff --git a/src/structures/GuildChannel.js b/src/structures/GuildChannel.js index b38a8cac1..2e0ee57d0 100644 --- a/src/structures/GuildChannel.js +++ b/src/structures/GuildChannel.js @@ -547,7 +547,8 @@ class GuildChannel extends Channel { get manageable() { if (this.client.user.id === this.guild.ownerID) return true; const permissions = this.permissionsFor(this.client.user); - return permissions && permissions.has([Permissions.FLAGS.MANAGE_CHANNELS, Permissions.FLAGS.VIEW_CHANNEL]); + if (!permissions) return false; + return permissions.has([Permissions.FLAGS.MANAGE_CHANNELS, Permissions.FLAGS.VIEW_CHANNEL]); } /**