Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compare link in active feeds for new branch #19149

Merged
merged 7 commits into from
Mar 23, 2022
20 changes: 19 additions & 1 deletion services/repository/push.go
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,25 @@ func pushUpdates(optsList []*repo_module.PushUpdateOptions) error {
if len(commits.Commits) > setting.UI.FeedMaxCommitNum {
commits.Commits = commits.Commits[:setting.UI.FeedMaxCommitNum]
}
commits.CompareURL = repo.ComposeCompareURL(opts.OldCommitID, opts.NewCommitID)

oldCommitID := opts.OldCommitID
if oldCommitID == git.EmptySHA && len(commits.Commits) > 0 {
oldCommitID = commits.Commits[len(commits.Commits)-1].Sha1
oldCommit, err := gitRepo.GetCommit(oldCommitID)
if err != nil {
log.Error("gitRepo.GetCommit %s/%s failed: %v", repo.ID, oldCommitID, err)
}

for i := 0; i < oldCommit.ParentCount(); i++ {
commitID, _ := oldCommit.ParentID(i)
if !commitID.IsZero() {
oldCommitID = commitID.String()
break
}
}
}

commits.CompareURL = repo.ComposeCompareURL(oldCommitID, opts.NewCommitID)
zeripath marked this conversation as resolved.
Show resolved Hide resolved
notification.NotifyPushCommits(pusher, repo, opts, commits)

if err = models.RemoveDeletedBranchByName(repo.ID, branch); err != nil {
Expand Down