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; } /**