From 08edc0b1db52992b2a2f8f6012a6001fb4336f38 Mon Sep 17 00:00:00 2001 From: Rodry <38259440+ImRodry@users.noreply.github.com> Date: Fri, 3 Sep 2021 18:22:49 +0100 Subject: [PATCH] fix(ThreadChannel): fetchStarterMessage bug (#6584) --- src/structures/ThreadChannel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/ThreadChannel.js b/src/structures/ThreadChannel.js index 1a6ba4e8a..ea19d7274 100644 --- a/src/structures/ThreadChannel.js +++ b/src/structures/ThreadChannel.js @@ -262,7 +262,7 @@ class ThreadChannel extends Channel { * @returns {Promise} */ fetchStarterMessage(options) { - return this.channel.messages.fetch(this.id, options); + return this.parent.messages.fetch(this.id, options); } /**