diff --git a/packages/core/src/api/thread.ts b/packages/core/src/api/thread.ts index 94f08f1a5..0ea789bae 100644 --- a/packages/core/src/api/thread.ts +++ b/packages/core/src/api/thread.ts @@ -24,11 +24,10 @@ export class ThreadsAPI { /** * Fetches a thread * - * @param channelId - The id of the channel to fetch the thread from * @param threadId - The id of the thread */ - public async get(channelId: Snowflake, threadId: Snowflake) { - return this.rest.get(Routes.threads(channelId, threadId)) as Promise; + public async get(threadId: Snowflake) { + return this.rest.get(Routes.channel(threadId)) as Promise; } /**