summaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/recaptcha/recaptcha.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/recaptcha/recaptcha.go b/modules/recaptcha/recaptcha.go
index 2d7bb6a5a6..a9718f2fdd 100644
--- a/modules/recaptcha/recaptcha.go
+++ b/modules/recaptcha/recaptcha.go
@@ -24,7 +24,7 @@ type Response struct {
ErrorCodes []string `json:"error-codes"`
}
-const apiURL = "/api/siteverify"
+const apiURL = "api/siteverify"
// Verify calls Google Recaptcha API to verify token
func Verify(response string) (bool, error) {