mirror of
https://github.com/ergochat/ergo.git
synced 2025-12-20 10:10:08 -08:00
Merge pull request #1633 from slingamn/register_400
fix FAIL REGISTER INVALID_USERNAME case
This commit is contained in:
commit
973d7dc1dc
1 changed files with 3 additions and 2 deletions
|
|
@ -2528,8 +2528,9 @@ func registerHandler(server *Server, client *Client, msg ircmsg.Message, rb *Res
|
|||
}
|
||||
// check that accountName is valid as a non-final parameter;
|
||||
// this is necessary for us to be valid and it will prevent us from emitting invalid error lines
|
||||
if accountName == "*" || accountName != utils.SafeErrorParam(accountName) {
|
||||
rb.Add(nil, server.name, "FAIL", "REGISTER", "INVALID_USERNAME", accountName, client.t("Username invalid or not given"))
|
||||
nickErrorParam := utils.SafeErrorParam(accountName)
|
||||
if accountName == "*" || accountName != nickErrorParam {
|
||||
rb.Add(nil, server.name, "FAIL", "REGISTER", "INVALID_USERNAME", nickErrorParam, client.t("Username invalid or not given"))
|
||||
return
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue