forked from External/ergo
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:
parent
7d6e48ed2a
commit
0f39fde647
2 changed files with 1 additions and 13 deletions
|
|
@ -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
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue