Wrong PR merge commit ID saved (#2007)

This commit is contained in:
Lauris BH 2017-06-19 12:37:11 +03:00 committed by Lunny Xiao
parent 4d2ea7dc41
commit 165cf33771
1 changed files with 1 additions and 1 deletions

View File

@ -328,7 +328,7 @@ func (pr *PullRequest) Merge(doer *User, baseGitRepo *git.Repository) (err error
return fmt.Errorf("git push: %s", stderr)
}
pr.MergedCommitID, err = headGitRepo.GetBranchCommitID(pr.BaseBranch)
pr.MergedCommitID, err = baseGitRepo.GetBranchCommitID(pr.BaseBranch)
if err != nil {
return fmt.Errorf("GetBranchCommit: %v", err)
}