From 469046216a37394fc9b2c8d0ec9d0919280fed92 Mon Sep 17 00:00:00 2001 From: Amy Gale Ruth Bowersox Date: Mon, 9 Feb 2026 23:28:54 -0700 Subject: [PATCH] change delimiter in validUIDs --- conferenceadmin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conferenceadmin.go b/conferenceadmin.go index 8ea329c..3eb1438 100644 --- a/conferenceadmin.go +++ b/conferenceadmin.go @@ -352,7 +352,7 @@ func ConferenceMembers(ctxt ui.AmContext) (string, any, error) { ctxt.VarMap().Set("total", total) ctxt.VarMap().Set("validUids", strings.Join(util.Map(mr, func(cd CMData) string { return fmt.Sprintf("%d", cd.User.Uid) - }), ",")) + }), "|")) if offset > 0 { ctxt.VarMap().Set("showPrev", true) }