fixed ERR_PASSWDMISMATCH reply
This commit is contained in:
parent
e209fc7cc6
commit
fd24369eaf
|
@ -157,7 +157,7 @@ func (sv *Server) dispatcher() {
|
|||
continue
|
||||
}
|
||||
if !sv.authCallback(cl.Name(), cl.Password()) {
|
||||
cl.Receive(irc.M(sv.host, ERR_PASSWDMISMATCH, cl.Name(), "Password incorrect"))
|
||||
cl.Receive(irc.M(sv.host, ERR_PASSWDMISMATCH, "", "Password incorrect"))
|
||||
go func() {
|
||||
time.Sleep(5 * time.Second)
|
||||
cl.Register(false)
|
||||
|
|
Loading…
Reference in New Issue