Trim client secret after reading from file (#1697)

Reading from file will include a line break, which results in a mismatching client secret
compared to reading directly from the config.
This commit is contained in:
danielalvsaaker 2024-01-25 09:53:34 +01:00 committed by GitHub
parent a369d57a17
commit b4210e2c90
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -590,7 +590,7 @@ func GetHeadscaleConfig() (*Config, error) {
if err != nil {
return nil, err
}
oidcClientSecret = string(secretBytes)
oidcClientSecret = strings.TrimSpace(string(secretBytes))
}
return &Config{