mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-29 10:57:44 +09:00 
			
		
		
		
	Fix panic in API pulls when headbranch does not exist (#10676)
* Fix panic in API pulls when headbranch does not exist * refix other reference to plumbing.ErrReferenceNotFound Signed-off-by: Andrew Thornton <art27@cantab.net>
This commit is contained in:
		| @@ -114,7 +114,7 @@ func ToAPIPullRequest(pr *models.PullRequest) *api.PullRequest { | ||||
| 		if git.IsErrBranchNotExist(err) { | ||||
| 			headCommitID, err := headGitRepo.GetRefCommitID(apiPullRequest.Head.Ref) | ||||
| 			if err != nil && !git.IsErrNotExist(err) { | ||||
| 				log.Error("GetCommit[%s]: %v", headBranch.Name, err) | ||||
| 				log.Error("GetCommit[%s]: %v", pr.HeadBranch, err) | ||||
| 				return nil | ||||
| 			} | ||||
| 			if err == nil { | ||||
|   | ||||
| @@ -21,6 +21,11 @@ import ( | ||||
| func (repo *Repository) GetRefCommitID(name string) (string, error) { | ||||
| 	ref, err := repo.gogitRepo.Reference(plumbing.ReferenceName(name), true) | ||||
| 	if err != nil { | ||||
| 		if err == plumbing.ErrReferenceNotFound { | ||||
| 			return "", ErrNotExist{ | ||||
| 				ID: name, | ||||
| 			} | ||||
| 		} | ||||
| 		return "", err | ||||
| 	} | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user