From 171c6d6df3afbd6d0895528b2a8a38cb3d25d5f0 Mon Sep 17 00:00:00 2001 From: Sergey Matveev Date: Wed, 7 Oct 2015 18:33:53 +0300 Subject: [PATCH] Increase maximum nickname length for convenience --- daemon.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon.go b/daemon.go index 500e80b..9145ba0 100644 --- a/daemon.go +++ b/daemon.go @@ -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 { -- 2.44.0