From 09280d6eb138d8c03a6636e4ec62d1a6eccbbf8b Mon Sep 17 00:00:00 2001 From: Tarrgon <61888458+Tarrgon@users.noreply.github.com> Date: Fri, 9 Jan 2026 20:44:15 -0500 Subject: [PATCH] Normalize error --- src/utils/oauth2.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/oauth2.ts b/src/utils/oauth2.ts index 87c980e..db39d6c 100644 --- a/src/utils/oauth2.ts +++ b/src/utils/oauth2.ts @@ -104,7 +104,7 @@ export class DiscordOAuth2 { }); if (res.status < 200 || res.status >= 300) { - console.error(`Non 200 code while joining user: ${options.userId} to discord (${res.status}):`); + console.error(`Non 200 code while joining user (${options.userId}) to discord (${res.status}):`); const text = await res.text(); console.error(text); let data = { code: 0 };