mirror of
https://github.com/ergochat/ergo.git
synced 2024-11-15 08:29:31 +01:00
fix error message for NS SET EMAIL without the password
This commit is contained in:
parent
2274ef3fa0
commit
9f0c3cdc0e
@ -1130,10 +1130,14 @@ func nsConfirmPassword(server *Server, account, passphrase string) (errorMessage
|
|||||||
errorMessage = `You're not logged into an account`
|
errorMessage = `You're not logged into an account`
|
||||||
} else {
|
} else {
|
||||||
hash := accountData.Credentials.PassphraseHash
|
hash := accountData.Credentials.PassphraseHash
|
||||||
if hash != nil && passwd.CompareHashAndPassword(hash, []byte(passphrase)) != nil {
|
if hash != nil {
|
||||||
|
if passphrase == "" {
|
||||||
|
errorMessage = `You must supply a password`
|
||||||
|
} else if passwd.CompareHashAndPassword(hash, []byte(passphrase)) != nil {
|
||||||
errorMessage = `Password incorrect`
|
errorMessage = `Password incorrect`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user