commands: Remove ERROR on missing baseURL

That logic fails in multi-host mode when no baseURL is set on top level.

Fixes #4397
This commit is contained in:
Bjørn Erik Pedersen 2018-02-21 10:30:00 +01:00
parent 8dc77b84a5
commit 55bd46a633
No known key found for this signature in database
GPG Key ID: 330E6E2BD4859D8F

View File

@ -346,10 +346,6 @@ func InitializeConfig(running bool, doWithCommandeer func(c *commandeer) error,
config.Set("logI18nWarnings", logI18nWarnings)
if !config.GetBool("relativeURLs") && config.GetString("baseURL") == "" {
cfg.Logger.ERROR.Println("No 'baseURL' set in configuration or as a flag. Features like page menus will not work without one.")
}
if theme != "" {
config.Set("theme", theme)
}