fixed bug in conference hotlist sidebox rendering

This commit is contained in:
2026-02-23 21:35:00 -07:00
parent 220e1ecc98
commit c4cecbc8a9
+1 -1
View File
@@ -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)