space to 4 tabs

This commit is contained in:
Thomas Lynch
2022-01-03 01:16:46 +11:00
parent b63daef8e1
commit 5007106c3a

View File

@ -150,7 +150,14 @@ function _M.view(applet)
captcha_secret,
parsed_body["h-captcha-response"]
)
local res, err = http.post({data=hcaptcha_data, url=hcaptcha_url, headers={host=captcha_provider_domain, ["content-type"]="application/x-www-form-urlencoded"} })
local res, err = http.post({
data=hcaptcha_data,
url=hcaptcha_url,
headers={
host=captcha_provider_domain,
["content-type"]="application/x-www-form-urlencoded"
}
})
local status, api_response = pcall(res.json, res)
if not status then
local original_error = api_response