From 5460483bc9a6540f883b10887e02be47d1d8a614 Mon Sep 17 00:00:00 2001 From: bytedream Date: Sat, 15 Nov 2025 22:34:06 +0100 Subject: [PATCH] yippie js --- src/util/webhook.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/webhook.ts b/src/util/webhook.ts index e6bed2c..72afc21 100644 --- a/src/util/webhook.ts +++ b/src/util/webhook.ts @@ -37,7 +37,7 @@ export async function sendWebhook(action: T, data: Webh const webhookFutures = []; - for (const webhook in WEBHOOK_ENDPOINT.split(',')) { + for (const webhook of WEBHOOK_ENDPOINT.split(',')) { webhookFutures.push( (async () => { let retries = 0;