From c4cecbc8a90887921337a911880480acf5d6c652 Mon Sep 17 00:00:00 2001 From: Amy Gale Ruth Bowersox Date: Mon, 23 Feb 2026 21:35:00 -0700 Subject: [PATCH] fixed bug in conference hotlist sidebox rendering --- database/conference.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/conference.go b/database/conference.go index a4a1fa0..171b9fa 100644 --- a/database/conference.go +++ b/database/conference.go @@ -1003,7 +1003,7 @@ func AmGetConference(ctx context.Context, id int32) (*Conference, error) { return rc.(*Conference), nil } var conf Conference - err := amdb.GetContext(ctx, &conf, "SELECT * from confs where confid = ?") + err := amdb.GetContext(ctx, &conf, "SELECT * from confs where confid = ?", id) switch err { case nil: conferenceCache.Add(id, &conf)