mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 10:44:12 +01:00 
			
		
		
		
	Handle deleted base branch in PR (#10618)
Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
		
							parent
							
								
									ae452d024e
								
							
						
					
					
						commit
						35027305d1
					
				@ -356,6 +356,16 @@ func PrepareViewPullInfo(ctx *context.Context, issue *models.Issue) *git.Compare
 | 
				
			|||||||
		return nil
 | 
							return nil
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	defer baseGitRepo.Close()
 | 
						defer baseGitRepo.Close()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if !baseGitRepo.IsBranchExist(pull.BaseBranch) {
 | 
				
			||||||
 | 
							ctx.Data["IsPullRequestBroken"] = true
 | 
				
			||||||
 | 
							ctx.Data["BaseTarget"] = pull.BaseBranch
 | 
				
			||||||
 | 
							ctx.Data["HeadTarget"] = pull.HeadBranch
 | 
				
			||||||
 | 
							ctx.Data["NumCommits"] = 0
 | 
				
			||||||
 | 
							ctx.Data["NumFiles"] = 0
 | 
				
			||||||
 | 
							return nil
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	var headBranchExist bool
 | 
						var headBranchExist bool
 | 
				
			||||||
	var headBranchSha string
 | 
						var headBranchSha string
 | 
				
			||||||
	// HeadRepo may be missing
 | 
						// HeadRepo may be missing
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user