Fix error message when saving generated LOCAL_ROOT_URL config (#15880) (#15882)

Backport of #15880.
mj-v1.14.3
Naohisa Murakami 3 years ago committed by GitHub
parent fa96ddb327
commit e38134f707
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -175,7 +175,7 @@ func setPort(port string) error {
cfg.Section("server").Key("LOCAL_ROOT_URL").SetValue(defaultLocalURL)
if err := cfg.SaveTo(setting.CustomConf); err != nil {
return fmt.Errorf("Error saving generated JWT Secret to custom config: %v", err)
return fmt.Errorf("Error saving generated LOCAL_ROOT_URL to custom config: %v", err)
}
}
return nil

Loading…
Cancel
Save