From 4b15c65092bb9f1a49561166edfaf945481b5fbd Mon Sep 17 00:00:00 2001 From: Regalijan Date: Sun, 12 Apr 2026 01:13:59 -0400 Subject: [PATCH] Spit out as text in error console --- functions/api/game-bans/[user]/history.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/api/game-bans/[user]/history.ts b/functions/api/game-bans/[user]/history.ts index c9d2dc6..863e7fa 100644 --- a/functions/api/game-bans/[user]/history.ts +++ b/functions/api/game-bans/[user]/history.ts @@ -17,7 +17,7 @@ export async function onRequestGet(context: RequestContext) { ); if (!robloxUserReq.ok) { - console.log(await robloxUserReq.json()); + console.log(await robloxUserReq.text()); return jsonError("Failed to resolve username", 500); }