From ba906b158db0c85150977d2ff1566441ec49da60 Mon Sep 17 00:00:00 2001 From: Jah-yee <166608075+Jah-yee@users.noreply.github.com> Date: Tue, 23 Jun 2026 13:40:30 +0800 Subject: [PATCH] fix: correct occured to occurred typo in error message (src/bot.ts) --- src/bot.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bot.ts b/src/bot.ts index 2c3bd5c..45d9a3d 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -59,7 +59,7 @@ export async function handleRequest(request: Request): Promise { return respond({ type: InteractionResponseType.ChannelMessageWithSource, data: { - content: `An error occured: ${(invite as any).message}\nMake sure I have the "Create Invite" permission in the voice channel!`, + content: `An error occurred: ${(invite as any).message}\nMake sure I have the "Create Invite" permission in the voice channel!`, allowed_mentions: { parse: [] } } })