diff --git a/src/structures/ReactionCollector.js b/src/structures/ReactionCollector.js index c003272244c4..1b0b5f5badfd 100644 --- a/src/structures/ReactionCollector.js +++ b/src/structures/ReactionCollector.js @@ -187,7 +187,7 @@ class ReactionCollector extends Collector { * @returns {void} */ _handleChannelDeletion(channel) { - if (channel.id === this.message.channelId || channel.id === this.message.channel.parentId) { + if (channel.id === this.message.channelId || channel.threads?.cache.has(this.message.channelId)) { this.stop('channelDelete'); } }