remove insecure reattach check

See #2013; given that plaintext is deprecated now, it seems like there is no
added value from continuing to police this.
This commit is contained in:
Shivaram Lingamneni 2023-06-04 17:45:46 -04:00
parent 7d6e48ed2a
commit 0f39fde647
2 changed files with 1 additions and 13 deletions

View file

@ -359,10 +359,7 @@ func (server *Server) tryRegister(c *Client, session *Session) (exiting bool) {
rb := NewResponseBuffer(session)
nickError := performNickChange(server, c, c, session, c.preregNick, rb)
rb.Send(true)
if nickError == errInsecureReattach {
c.Quit(c.t("You can't mix secure and insecure connections to this account"), nil)
return true
} else if nickError != nil {
if nickError != nil {
c.preregNick = ""
return false
}