3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-10 22:19:31 +01:00

relax regex restrictions for nicknames

This commit is contained in:
Jeremy Latt 2014-03-08 20:03:14 -08:00
parent f1b610e1c1
commit 97886dd00f

View File

@ -19,11 +19,11 @@ var (
// regexps
ChannelNameExpr = regexp.MustCompile(`^[&!#+][\pL\pN]{1,63}$`)
NicknameExpr = regexp.MustCompile(
"^[\\pL\\[\\]{}^`_][\\pL\\pN\\[\\]{}^`_|]{1,31}$")
"^[\\pL\\pN\\pP\\pS]{1,32}$")
)
const (
SEM_VER = "ergonomadic-1.3"
SEM_VER = "ergonomadic-1.3.1"
CRLF = "\r\n"
MAX_REPLY_LEN = 512 - len(CRLF)