1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-02 20:35:25 +02:00

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