completed manage conference list

This commit is contained in:
2026-02-20 22:33:27 -07:00
parent 7ae9326292
commit acf65583ca
8 changed files with 205 additions and 6 deletions
+5 -2
View File
@@ -524,14 +524,17 @@ var amContextRecycleBin chan *amContext
* Standard Go error status.
*/
func newContext(ctxt echo.Context) (*amContext, error) {
rc := freeContext.Get().(*amContext)
if rc == nil {
var rc *amContext
tmp := freeContext.Get()
if tmp == nil {
rc = &amContext{
rendervars: make(jet.VarMap),
frameTitle: "",
frameMeta: make(map[int]map[string]string),
outputType: "",
}
} else {
rc = tmp.(*amContext)
}
var err error