From 95619a8a89da3cff964225f10cb161665634a684 Mon Sep 17 00:00:00 2001 From: MARCROCK22 Date: Fri, 13 Jun 2025 13:38:26 -0400 Subject: [PATCH] refactor: change listActiveThreads method to remove async keyword --- src/structures/Guild.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/Guild.ts b/src/structures/Guild.ts index 0f465e0..febe732 100644 --- a/src/structures/Guild.ts +++ b/src/structures/Guild.ts @@ -71,7 +71,7 @@ export class Guild extends (BaseGuild as unk return this.members.fetch(this.ownerId, force); } - async listActiveThreads(force = false): Promise { + listActiveThreads(force = false): Promise { return this.client.threads.listGuildActive(this.id, force); }