Tweak captcha length
From 6 to 4-5 (random) chars Signed-off-by: Minecon724 <minecon724@noreply.git.m724.eu>
This commit is contained in:
parent
64812fd2c8
commit
4f57fa4d0e
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue