mirror of
https://github.com/go-gitea/gitea
synced 2025-07-10 12:37:19 +00:00
update xorm for fixing bug on processor BeforeSet and AfterSet when Find a map (#987)
This commit is contained in:
3
vendor/github.com/go-xorm/xorm/rows.go
generated
vendored
3
vendor/github.com/go-xorm/xorm/rows.go
generated
vendored
@ -114,7 +114,8 @@ func (rows *Rows) Scan(bean interface{}) error {
|
||||
return fmt.Errorf("scan arg is incompatible type to [%v]", rows.beanType)
|
||||
}
|
||||
|
||||
return rows.session.row2Bean(rows.rows, rows.fields, rows.fieldsCount, bean)
|
||||
_, err := rows.session.row2Bean(rows.rows, rows.fields, rows.fieldsCount, bean)
|
||||
return err
|
||||
}
|
||||
|
||||
// Close session if session.IsAutoClose is true, and claimed any opened resources
|
||||
|
Reference in New Issue
Block a user