You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rb.Add(nil, server.name, ERR_NICKNAMEINUSE, details.nick, utils.SafeErrorParam(nickname), client.t("Nickname is reserved by a different account"))
}
rb.Add(nil, server.name, "FAIL", "NICK", "NICKNAME_RESERVED", utils.SafeErrorParam(nickname), client.t("Nickname is reserved by a different account"))
See #1594 and #1599 for some context on this decision, although the rationale is still not completely clear.
The current behavior is especially weird because the 433 is omitted even when the nickname is actually in use (because SetNick preferentially returns errNicknameReserved over errNicknameInUse, which is an implementation detail). We might want to change the behavior in the case when the nickname is actually in use; we might want to change it in general (would that cause problems for current versions of Limnoria?)
The text was updated successfully, but these errors were encountered:
Reported by savoyard:
ergo/irc/nickname.go
Lines 44 to 49 in 681e8b1
See #1594 and #1599 for some context on this decision, although the rationale is still not completely clear.
The current behavior is especially weird because the 433 is omitted even when the nickname is actually in use (because
SetNick
preferentially returnserrNicknameReserved
overerrNicknameInUse
, which is an implementation detail). We might want to change the behavior in the case when the nickname is actually in use; we might want to change it in general (would that cause problems for current versions of Limnoria?)The text was updated successfully, but these errors were encountered: