Tweak captcha length

From 6 to 4-5 (random) chars

Signed-off-by: Minecon724 <minecon724@noreply.git.m724.eu>
This commit is contained in:
Minecon724 2025-03-21 08:06:58 +01:00
parent 64812fd2c8
commit 4f57fa4d0e
Signed by: Minecon724
GPG key ID: A02E6E67AB961189

View file

@ -5,6 +5,7 @@ package context
import (
"fmt"
"math/rand"
"sync"
"code.gitea.io/gitea/modules/base"
@ -55,7 +56,9 @@ func GetImageCaptcha() string {
imageCaptchaOnce.Do(func() {
captcha.SetCustomStore(&imageCaptchaStore{c: cache.GetCache()})
})
return captcha.New()
length := 4 + rand.Intn(2) // 4 or 5 chars
return captcha.NewLen(length)
}
// SetCaptchaData sets common captcha data