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…
	
	Add table
		Add a link
		
	
		Reference in a new issue