3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-15 00:19:29 +01:00

Add missing argument to ERR_NEEDMOREPARAMS on USER commands.

Refs:

* other instances in the codebase
* https://defs.ircdocs.horse/defs/numerics.html#err-needmoreparams-461
* https://modern.ircdocs.horse/#errneedmoreparams-461
This commit is contained in:
Valentin Lorentz 2021-08-13 21:10:39 +02:00
parent 5d2d4a99bc
commit a90fbf9f2c

View File

@ -3038,7 +3038,7 @@ func userHandler(server *Server, client *Client, msg ircmsg.Message, rb *Respons
username, realname := msg.Params[0], msg.Params[3]
if len(realname) == 0 {
rb.Add(nil, server.name, ERR_NEEDMOREPARAMS, client.Nick(), client.t("Not enough parameters"))
rb.Add(nil, server.name, ERR_NEEDMOREPARAMS, client.Nick(), "USER", client.t("Not enough parameters"))
return false
}