Fix bug in removeOrgRepo (#1858)

release/v1.2
Ethan Koenig 7 years ago committed by Bo-Yi Wu
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…
Cancel
Save