diff --git a/src/structures/ThreadChannel.js b/src/structures/ThreadChannel.js index cc53c5e..6b57223 100644 --- a/src/structures/ThreadChannel.js +++ b/src/structures/ThreadChannel.js @@ -326,7 +326,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; } /**