Fixed logging bug

master
Keith Irwin 2021-12-26 16:03:03 -07:00
parent 931a3e6165
commit 326ce567f4
Signed by: ki9
GPG Key ID: DF773B3F4A88DA86
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ app.post('/', async (req, res) => {
// hcaptcha failed
} else {
console.log(`Failed hCaptcha with errors: ${data.error-codes}`)
console.log(`Failed hCaptcha with errors: ${data['error-codes']`)
return res.sendStatus(403)
}
})