From 03001cff0b515594d4251fa9271ae5934deb7126 Mon Sep 17 00:00:00 2001 From: Jah-yee <166608075+Jah-yee@users.noreply.github.com> Date: Mon, 3 Aug 2026 00:20:18 +0800 Subject: [PATCH] fix: correct 'Sucess' to 'Success' in API response (app.js:31) User-facing API response returned on successful captcha verification. --- app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.js b/app.js index 85a8244..92d3d6d 100644 --- a/app.js +++ b/app.js @@ -28,7 +28,7 @@ app.post('/submit',function(req,res){ if(body.success !== undefined && !body.success) { return res.json({"responseCode" : 1,"responseDesc" : "Failed captcha verification"}); } - res.json({"responseCode" : 0,"responseDesc" : "Sucess"}); + res.json({"responseCode" : 0,"responseDesc" : "Success"}); }); });