mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-15 00:19:29 +01:00
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
@ -195,15 +195,6 @@ func (clients *ClientManager) SetNick(client *Client, session *Session, newNick
|
|||||||
dryRun || session == nil {
|
dryRun || session == nil {
|
||||||
return "", errNicknameInUse, false
|
return "", errNicknameInUse, false
|
||||||
}
|
}
|
||||||
// check TLS modes
|
|
||||||
if client.HasMode(modes.TLS) != currentClient.HasMode(modes.TLS) {
|
|
||||||
if useAccountName {
|
|
||||||
// #955: this is fatal because they can't fix it by trying a different nick
|
|
||||||
return "", errInsecureReattach, false
|
|
||||||
} else {
|
|
||||||
return "", errNicknameInUse, false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
reattachSuccessful, numSessions, lastSeen, wasAway, nowAway := currentClient.AddSession(session)
|
reattachSuccessful, numSessions, lastSeen, wasAway, nowAway := currentClient.AddSession(session)
|
||||||
if !reattachSuccessful {
|
if !reattachSuccessful {
|
||||||
return "", errNicknameInUse, false
|
return "", errNicknameInUse, false
|
||||||
|
@ -359,10 +359,7 @@ func (server *Server) tryRegister(c *Client, session *Session) (exiting bool) {
|
|||||||
rb := NewResponseBuffer(session)
|
rb := NewResponseBuffer(session)
|
||||||
nickError := performNickChange(server, c, c, session, c.preregNick, rb)
|
nickError := performNickChange(server, c, c, session, c.preregNick, rb)
|
||||||
rb.Send(true)
|
rb.Send(true)
|
||||||
if nickError == errInsecureReattach {
|
if nickError != nil {
|
||||||
c.Quit(c.t("You can't mix secure and insecure connections to this account"), nil)
|
|
||||||
return true
|
|
||||||
} else if nickError != nil {
|
|
||||||
c.preregNick = ""
|
c.preregNick = ""
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user