From b4d5992e1fd9582dbb2688ebcfbc1a618cd6b214 Mon Sep 17 00:00:00 2001 From: Zhiger Kalymov Date: Thu, 16 Feb 2023 16:15:28 +0600 Subject: [PATCH] fix: wrong randomText when unicode preset --- captcha.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/captcha.go b/captcha.go index da857b4..b34baac 100644 --- a/captcha.go +++ b/captcha.go @@ -186,9 +186,9 @@ func drawWithOption(text string, img *image.NRGBA, options *Options) error { } func randomText(opts *Options) (text string) { - n := len(opts.CharPreset) + n := len([]rune(opts.CharPreset)) for i := 0; i < opts.TextLength; i++ { - text += string(opts.CharPreset[rand.Intn(n)]) + text += string([]rune(opts.CharPreset)[rand.Intn(n)]) } return text