config: Load all label settings
Until now only the first occurrence of a label type was loaded. Fixes: https://todo.xenrox.net/~xenrox/ntfy-alertmanager/10
This commit is contained in:
parent
9f12f78e9f
commit
549793cb83
1 changed files with 1 additions and 3 deletions
|
@ -85,9 +85,7 @@ func readConfig(path string) (*config, error) {
|
||||||
|
|
||||||
labels := make(map[string]labelConfig)
|
labels := make(map[string]labelConfig)
|
||||||
for _, labelName := range config.labels.Order {
|
for _, labelName := range config.labels.Order {
|
||||||
labelDir := labelsDir.Children.Get(labelName)
|
for _, labelDir := range labelsDir.Children.GetAll(labelName) {
|
||||||
|
|
||||||
if labelDir != nil {
|
|
||||||
labelConfig := new(labelConfig)
|
labelConfig := new(labelConfig)
|
||||||
var name string
|
var name string
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue