mirror of
https://github.com/ergochat/ergo.git
synced 2024-12-22 18:52:41 +01:00
Set uninteresting username if user's using a special nick
This commit is contained in:
parent
71a33890b8
commit
8ecf96d447
@ -2469,7 +2469,13 @@ func userHandler(server *Server, client *Client, msg ircmsg.IrcMessage, rb *Resp
|
|||||||
|
|
||||||
err := client.SetNames(msg.Params[0], msg.Params[3], false)
|
err := client.SetNames(msg.Params[0], msg.Params[3], false)
|
||||||
if err == errInvalidUsername {
|
if err == errInvalidUsername {
|
||||||
rb.Add(nil, server.name, ERR_INVALIDUSERNAME, client.t("Malformed username"))
|
// if client's using a unicode nick or something weird, let's just set 'em up with a blank username instead.
|
||||||
|
// fixes clients that just use their nick as a username so they can still use the interesting nick
|
||||||
|
if client.preregNick != "" && !isIdent(client.preregNick) {
|
||||||
|
client.SetNames("user", msg.Params[3], false)
|
||||||
|
} else {
|
||||||
|
rb.Add(nil, server.name, ERR_INVALIDUSERNAME, client.t("Malformed username"))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return false
|
return false
|
||||||
|
Loading…
Reference in New Issue
Block a user