diff --git a/embedg-app/src/discord/util.ts b/embedg-app/src/discord/util.ts index b1f7fcb1e..86ca7b2b1 100644 --- a/embedg-app/src/discord/util.ts +++ b/embedg-app/src/discord/util.ts @@ -18,8 +18,8 @@ export function parseWebhookUrl(webhookUrl: string): WebhookInfo | null { if (match) { return { type: "discord", - id: match[1], - token: match[2], + id: match[2], + token: match[3], }; }