You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Appears to be regression from xorm 1.2.2 - in xorm/rows.go:90-93
// Err returns the error, if any, that was encountered during iteration. Err may be called after an explicit or implicit Close.func (rows*Rows) Err() error {
returnrows.rows.Err()
}
Should probably be:
// Err returns the error, if any, that was encountered during iteration. Err may be called after an explicit or implicit Close.func (rows*Rows) Err() error {
ifrows.rows==nil {
returnnil
}
returnrows.rows.Err()
}
I think https://gitea.com/xorm/xorm/pulls/2046 fixed that bug upstream, so the only thing left to do is upgrade xorm once a patched version is released.
Uh oh!
There was an error while loading. Please reload this page.
[x]
):Description
see log above
Screenshots
The text was updated successfully, but these errors were encountered: