Fix bug in removeOrgRepo (#1858)
This commit is contained in:
parent
62f600cf1c
commit
036ce3f813
|
@ -549,7 +549,7 @@ func removeOrgRepo(e Engine, orgID, repoID int64) error {
|
|||
|
||||
teamIDs := make([]int64, len(teamRepos))
|
||||
for i, teamRepo := range teamRepos {
|
||||
teamIDs[i] = teamRepo.ID
|
||||
teamIDs[i] = teamRepo.TeamID
|
||||
}
|
||||
|
||||
_, err := e.Decr("num_repos").In("id", teamIDs).Update(new(Team))
|
||||
|
|
Loading…
Reference in New Issue