From af6a0e5d5136424e7c70dc9813456b7e85874087 Mon Sep 17 00:00:00 2001 From: MrMythicalYT <91077061+MrMythicalYT@users.noreply.github.com> Date: Sun, 12 Mar 2023 13:29:13 -0400 Subject: [PATCH] fix(ThreadChannel): fetch starter message properly (#9217) --- 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 7c4ac27f8..c635cb388 100644 --- a/src/structures/ThreadChannel.js +++ b/src/structures/ThreadChannel.js @@ -310,7 +310,7 @@ class ThreadChannel extends Channel { // eslint-disable-next-line require-await async fetchStarterMessage(options) { const channel = this.parent?.type === 'GUILD_FORUM' ? this : this.parent; - return channel?.messages.fetch({ message: this.id, ...options }) ?? null; + return channel?.messages.fetch(this.id, options) ?? null; } /**