change "end of NAMES list" message to more closely match RocketChat's regexp

--HG--
branch : nmdc-ircfrontend
This commit is contained in:
mappu 2018-03-24 16:20:48 +13:00
parent 2d19acb846
commit 9d9fcef954
1 changed files with 1 additions and 1 deletions

View File

@ -769,7 +769,7 @@ func (s *Server) reply(code replyCode, args ...string) {
case rplNames:
s.writeClient(fmt.Sprintf(":%s 353 %s = %s :%s", s.name, s.clientNick(), args[0], args[1]))
case rplEndOfNames:
s.writeClient(fmt.Sprintf(":%s 366 %s %s :End of NAMES list", s.name, s.clientNick(), args[0]))
s.writeClient(fmt.Sprintf(":%s 366 %s %s :End of /NAMES list.", s.name, s.clientNick(), args[0]))
case rplWho:
s.writeClient(fmt.Sprintf(":%s 352 %s %s %s %s %s %s H :0 %s", s.name, s.clientNick(), args[1], args[0], args[0], s.name, args[0], args[0]))