fix(authentication): trim the newline character from the password string (#3091)

This commit is contained in:
firecyberice
2019-10-08 00:52:37 +02:00
committed by Anthony Lapenna
parent 68fe5d6906
commit ef4c138e03

View File

@@ -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)
}