diff --git a/files/routes/login.py b/files/routes/login.py index 22bd8712e6..c2803ae4f5 100644 --- a/files/routes/login.py +++ b/files/routes/login.py @@ -318,7 +318,7 @@ def sign_up_post(v): "sitekey": HCAPTCHA_SITEKEY} url = "https://hcaptcha.com/siteverify" - x = requests.post(url, data=data, timeout=5) + x = requests.post(url, data=data, timeout=5, proxies=proxies) if not x.json()["success"]: return signup_error("Unable to verify captcha [2].")