Skip to content

Commit 845c70c

Browse files
committed
fix
1 parent 6e105e4 commit 845c70c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

routers/web/repo/view_home.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ func prepareRecentlyPushedNewBranches(ctx *context.Context) {
227227
continue
228228
}
229229
// Base is the pushed branch (for fork branch or local pushed branch perspective)
230-
if divergingInfo.BaseIsNewer || divergingInfo.CommitsAhead > 0 {
230+
if divergingInfo.BaseIsNewer || divergingInfo.CommitsBehind > 0 {
231231
finalBranches = append(finalBranches, branch)
232232
}
233233
}

services/repository/branch.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -651,8 +651,8 @@ type BranchDivergingInfo struct {
651651
}
652652

653653
// getBranchDivergingInfo returns the information about the divergence of a patch branch to the base branch.
654-
func GetBranchDivergingInfo(ctx reqctx.RequestContext, baseRepo, headRepo *repo_model.Repository, baseBranch, headbranch string) (*BranchDivergingInfo, error) {
655-
headGitBranch, err := git_model.GetBranch(ctx, headRepo.ID, headbranch)
654+
func GetBranchDivergingInfo(ctx reqctx.RequestContext, baseRepo, headRepo *repo_model.Repository, baseBranch, headBranch string) (*BranchDivergingInfo, error) {
655+
headGitBranch, err := git_model.GetBranch(ctx, headRepo.ID, headBranch)
656656
if err != nil {
657657
return nil, err
658658
}

0 commit comments

Comments
 (0)