summaryrefslogtreecommitdiffstats
path: root/routers/repo
diff options
context:
space:
mode:
Diffstat (limited to 'routers/repo')
-rw-r--r--routers/repo/compare.go26
1 files changed, 2 insertions, 24 deletions
diff --git a/routers/repo/compare.go b/routers/repo/compare.go
index 4869e5919a..2eef20f5ff 100644
--- a/routers/repo/compare.go
+++ b/routers/repo/compare.go
@@ -423,18 +423,7 @@ func PrepareCompareDiff(
// Get diff information.
ctx.Data["CommitRepoLink"] = headRepo.Link()
- headCommitID := headBranch
- if ctx.Data["HeadIsCommit"] == false {
- if ctx.Data["HeadIsTag"] == true {
- headCommitID, err = headGitRepo.GetTagCommitID(headBranch)
- } else {
- headCommitID, err = headGitRepo.GetBranchCommitID(headBranch)
- }
- if err != nil {
- ctx.ServerError("GetRefCommitID", err)
- return false
- }
- }
+ headCommitID := compareInfo.HeadCommitID
ctx.Data["AfterCommitID"] = headCommitID
@@ -460,18 +449,7 @@ func PrepareCompareDiff(
}
baseGitRepo := ctx.Repo.GitRepo
- baseCommitID := baseBranch
- if ctx.Data["BaseIsCommit"] == false {
- if ctx.Data["BaseIsTag"] == true {
- baseCommitID, err = baseGitRepo.GetTagCommitID(baseBranch)
- } else {
- baseCommitID, err = baseGitRepo.GetBranchCommitID(baseBranch)
- }
- if err != nil {
- ctx.ServerError("GetRefCommitID", err)
- return false
- }
- }
+ baseCommitID := compareInfo.BaseCommitID
baseCommit, err := baseGitRepo.GetCommit(baseCommitID)
if err != nil {