Increase maximum nickname length for convenience

This commit is contained in:
Sergey Matveev 2015-10-07 18:33:53 +03:00
parent 3564207ae9
commit 171c6d6df3

View File

@ -39,7 +39,7 @@ const (
)
var (
RENickname = regexp.MustCompile("^[a-zA-Z0-9-]{1,9}$")
RENickname = regexp.MustCompile("^[a-zA-Z0-9-]{1,24}$")
)
type Daemon struct {