Browse Source

Fix typo in ACCOUNT_NAME_MUST_BE_NICK code

tags/v2.12.0
Val Lorentz 7 months ago
parent
commit
ddb804b622
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      irc/handlers.go

+ 1
- 1
irc/handlers.go View File

@@ -2818,7 +2818,7 @@ func registerHandler(server *Server, client *Client, msg ircmsg.Message, rb *Res
2818 2818
 	case "*", accountName:
2819 2819
 		// ok
2820 2820
 	default:
2821
-		rb.Add(nil, server.name, "FAIL", "REGISTER", "ACCOUNTNAME_MUST_BE_NICK", utils.SafeErrorParam(msg.Params[0]), client.t("You may only register your nickname as your account name"))
2821
+		rb.Add(nil, server.name, "FAIL", "REGISTER", "ACCOUNT_NAME_MUST_BE_NICK", utils.SafeErrorParam(msg.Params[0]), client.t("You may only register your nickname as your account name"))
2822 2822
 		return
2823 2823
 	}
2824 2824
 

Loading…
Cancel
Save