forked from kevadesu/forgejo
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:
parent
03de593402
commit
3a693bd18c
2 changed files with 2 additions and 2 deletions
|
@ -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},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue