mirror of
https://github.com/go-gitea/gitea
synced 2025-07-22 10:18:38 +00:00
Use provided database Engine (#17595)
- Don't get the engine from `db.DefaultContext`, instead use the provided one which is passed as paramater `e`.
This commit is contained in:
@@ -468,7 +468,7 @@ func (u *User) isVisibleToUser(e db.Engine, viewer *User) bool {
|
||||
}
|
||||
|
||||
// Now we need to check if they in some organization together
|
||||
count, err := db.GetEngine(db.DefaultContext).Table("team_user").
|
||||
count, err := e.Table("team_user").
|
||||
Where(
|
||||
builder.And(
|
||||
builder.Eq{"uid": viewer.ID},
|
||||
|
Reference in New Issue
Block a user