Skip to content

Commit

Permalink
fix: use stdencoding instead of rawstdencoding
Browse files Browse the repository at this point in the history
  • Loading branch information
jsiebens committed Jan 3, 2023
1 parent 35c46eb commit cbbaa31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func LoadConfig(path string) (*Config, error) {

envCfgB64 := os.Getenv("IONSCALE_CONFIG_BASE64")
if len(envCfgB64) != 0 {
b, err := base64.RawStdEncoding.DecodeString(envCfgB64)
b, err := base64.StdEncoding.DecodeString(envCfgB64)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit cbbaa31

Please sign in to comment.