Ver código fonte

Merge pull request #2092 from progval/patch-5

Fix typo in ACCOUNT_NAME_MUST_BE_NICK code
tags/v2.12.0
Shivaram Lingamneni 9 meses atrás
pai
commit
b33e1051f7
Nenhuma conta vinculada ao e-mail do autor do commit
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      irc/handlers.go

+ 1
- 1
irc/handlers.go Ver arquivo

2818
 	case "*", accountName:
2818
 	case "*", accountName:
2819
 		// ok
2819
 		// ok
2820
 	default:
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
 		return
2822
 		return
2823
 	}
2823
 	}
2824
 
2824
 

Carregando…
Cancelar
Salvar