diff --git a/functions/api/game-bans/[user]/save-data.ts b/functions/api/game-bans/[user]/save-data.ts index 5ee0556..07af89a 100644 --- a/functions/api/game-bans/[user]/save-data.ts +++ b/functions/api/game-bans/[user]/save-data.ts @@ -9,6 +9,6 @@ export async function onRequestGet(context: RequestContext) { try { return jsonResponse(JSON.stringify(await getSaveData(context, id))); } catch { - return jsonError("Failed to retrieve save data", 500); + return jsonError("Request to Roblox failed", 500); } }