mirror of
https://github.com/ergochat/ergo.git
synced 2025-12-23 03:21:59 -08:00
commit
e1e3062dad
1 changed files with 1 additions and 1 deletions
|
|
@ -405,7 +405,7 @@ func (am *AccountManager) Register(client *Client, account string, callbackNames
|
|||
// validatePassphrase checks whether a passphrase is allowed by our rules
|
||||
func validatePassphrase(passphrase string) error {
|
||||
// sanity check the length
|
||||
if len(passphrase) == 0 || len(passphrase) > 600 {
|
||||
if len(passphrase) == 0 || len(passphrase) > 256 {
|
||||
return errAccountBadPassphrase
|
||||
}
|
||||
// we use * as a placeholder in some places, if it's gotten this far then fail
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue