diff --git a/internal/pkg/node/methods.go b/internal/pkg/node/methods.go index 3e401c25..a2a4dfcf 100644 --- a/internal/pkg/node/methods.go +++ b/internal/pkg/node/methods.go @@ -153,7 +153,11 @@ func (ent *Entry) SetAltSlice(val []string, from string) { return } ent.altvalue = append(ent.altvalue, val...) - ent.from = ent.from + "," + from + if ent.from == "" { + ent.from = from + } else { + ent.from = ent.from + "," + from + } } /*