bug fixes in Scan() results and conference list template

This commit is contained in:
2025-12-28 23:40:50 -07:00
parent 99dd8e78b9
commit 98a74487c2
8 changed files with 78 additions and 27 deletions
+4 -1
View File
@@ -122,7 +122,10 @@ func AmGetGlobalProperty(ctx context.Context, index int32) (string, error) {
return "", err
}
if rs.Next() {
rs.Scan(&rc)
err = rs.Scan(&rc)
if err != nil {
return "", err
}
globalProps[index] = rc
return rc, nil
}