Skip to content

Commit

Permalink
Fix 2-dot direct compare to use the right base commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jtran committed Apr 15, 2023
1 parent b4e9525 commit 766460c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion routers/web/repo/compare.go
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,11 @@ func ParseCompareInfo(ctx *context.Context) *CompareInfo {
ctx.ServerError("GetCompareInfo", err)
return nil
}
ctx.Data["BeforeCommitID"] = ci.CompareInfo.MergeBase
if ci.DirectComparison {
ctx.Data["BeforeCommitID"] = ci.CompareInfo.BaseCommitID
} else {
ctx.Data["BeforeCommitID"] = ci.CompareInfo.MergeBase
}

return ci
}
Expand Down

0 comments on commit 766460c

Please sign in to comment.