loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request '[BUG] Use correct head commit for CODEOWNER' (#2658) from gusted/forgejo-codeowners-typo into forgejo

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/2658
Reviewed-by: Otto <otto@codeberg.org>

Gusted d1e808f8 cd7cdf06

+1 -1
+1 -1
models/issues/pull.go
··· 932 932 } 933 933 // Use the merge base as the base instead of the main branch to avoid problems 934 934 // if the pull request is out of date with the base branch. 935 - changedFiles, err := repo.GetFilesChangedBetween(prInfo.MergeBase, pr.HeadCommitID) 935 + changedFiles, err := repo.GetFilesChangedBetween(prInfo.MergeBase, prInfo.HeadCommitID) 936 936 if err != nil { 937 937 return err 938 938 }