1
0
Fork 0
forked from External/ergo
This commit is contained in:
Shivaram Lingamneni 2019-07-08 20:51:14 -04:00
parent ab7f8de66d
commit bbf6c4a269
2 changed files with 5 additions and 4 deletions

View file

@ -86,12 +86,10 @@ func performNickChange(server *Server, client *Client, target *Client, session *
channel.history.Add(histItem)
}
target.nickTimer.Touch(rb)
if target.Registered() {
client.server.monitorManager.AlertAbout(target, true)
}
// else: Run() will attempt registration immediately after this
target.nickTimer.Touch(rb)
} // else: these will be deferred to the end of registration (see #572)
return true
}