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
@@ -93,7 +93,10 @@ func AmStoreImage(ctx context.Context, typecode int16, owner int32, mimetype str
var img *ImageStore
if rs.Next() {
var id int32
rs.Scan(&id)
err = rs.Scan(&id)
if err != nil {
return nil, err
}
img, err = AmLoadImage(ctx, id)
if err != nil {
return nil, err