fixup! allow custom config per boxID, fixes #5

This commit is contained in:
Norwin 2018-06-29 21:27:55 +02:00
parent dc7a2019e7
commit d8e6d642fc

View file

@ -91,10 +91,10 @@ func getNotifyConf(boxID string) (*core.NotifyConfig, error) {
}
// override with per box configuration from file
if keyDefined("healthchecks."+boxID+".events") {
if keyDefined("healthchecks." + boxID + ".events") {
conf.Events = []core.NotifyEvent{}
}
err = viper.UnmarshalKey("healthchecks." + boxID, conf)
err = viper.UnmarshalKey("healthchecks."+boxID, conf)
if err != nil {
return nil, err
}