completed member export and removed some "breaking" bugs, still work to be done on the XML output

This commit is contained in:
2026-02-26 16:19:24 -07:00
parent c74563be51
commit 344562c55c
10 changed files with 141 additions and 23 deletions
+1 -2
View File
@@ -14,7 +14,6 @@ import (
_ "embed"
"errors"
"fmt"
"maps"
"os"
"regexp"
"strconv"
@@ -180,7 +179,7 @@ func overlayStringArray(loaded, defaulted []string) []string {
m[s] = true
}
rc := make([]string, 0, len(m))
for s := range maps.Keys(m) {
for s := range m {
rc = append(rc, s)
}
return rc