fix legacy changes

This commit is contained in:
2026-01-04 01:59:43 +05:30
parent 5d4eb5a505
commit f7859d7e0a

View File

@@ -81,7 +81,7 @@ export async function checkBotMembership(guildIds: string[]): Promise<boolean[]>
"Content-Type": "application/json",
"X-API-Key": process.env.BOT_API_KEY as string
},
body: `{"guild_ids": [${guildIds.join(",")}]}`,
body: JSON.stringify({ guild_ids: guildIds }),
next: { revalidate: 0 } // Don't cache this as it might change
});