1
1
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:
Gusted
2021-11-09 09:54:46 +01:00
committed by GitHub
parent 03de593402
commit 3a693bd18c
2 changed files with 2 additions and 2 deletions

View File

@@ -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},