mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-06 10:19:11 +01:00
Fix bug in removeOrgRepo (#1858)
This commit is contained in:
parent
62f600cf1c
commit
036ce3f813
1 changed files with 1 additions and 1 deletions
|
@ -549,7 +549,7 @@ func removeOrgRepo(e Engine, orgID, repoID int64) error {
|
||||||
|
|
||||||
teamIDs := make([]int64, len(teamRepos))
|
teamIDs := make([]int64, len(teamRepos))
|
||||||
for i, teamRepo := range 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))
|
_, err := e.Decr("num_repos").In("id", teamIDs).Update(new(Team))
|
||||||
|
|
Loading…
Reference in a new issue