fix(authentication): trim the newline character from the password string (#3091)
This commit is contained in:
committed by
Anthony Lapenna
parent
68fe5d6906
commit
ef4c138e03
@@ -623,7 +623,7 @@ func main() {
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
adminPasswordHash, err = cryptoService.Hash(string(content))
|
||||
adminPasswordHash, err = cryptoService.Hash(strings.TrimSuffix(string(content), "\n"))
|
||||
if err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user