Update error message

This commit is contained in:
Regalijan 2024-04-03 14:24:15 -04:00
parent 0f1e5c510f
commit 6ee1b020df
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

View File

@ -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);
}
}