mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 09:19:06 +01:00
parent
e4b95de388
commit
00448ebe91
1 changed files with 3 additions and 3 deletions
|
@ -433,7 +433,7 @@ func ParseCompareInfo(ctx *context.Context) *CompareInfo {
|
|||
if canRead {
|
||||
ctx.Data["RootRepo"] = rootRepo
|
||||
if !fileOnly {
|
||||
branches, tags, err := getBranchesAndTagsForRepo(ctx.User, rootRepo)
|
||||
branches, tags, err := getBranchesAndTagsForRepo(rootRepo)
|
||||
if err != nil {
|
||||
ctx.ServerError("GetBranchesForRepo", err)
|
||||
return nil
|
||||
|
@ -458,7 +458,7 @@ func ParseCompareInfo(ctx *context.Context) *CompareInfo {
|
|||
if canRead {
|
||||
ctx.Data["OwnForkRepo"] = ownForkRepo
|
||||
if !fileOnly {
|
||||
branches, tags, err := getBranchesAndTagsForRepo(ctx.User, ownForkRepo)
|
||||
branches, tags, err := getBranchesAndTagsForRepo(ownForkRepo)
|
||||
if err != nil {
|
||||
ctx.ServerError("GetBranchesForRepo", err)
|
||||
return nil
|
||||
|
@ -630,7 +630,7 @@ func PrepareCompareDiff(
|
|||
return false
|
||||
}
|
||||
|
||||
func getBranchesAndTagsForRepo(user *models.User, repo *models.Repository) (branches, tags []string, err error) {
|
||||
func getBranchesAndTagsForRepo(repo *models.Repository) (branches, tags []string, err error) {
|
||||
gitRepo, err := git.OpenRepository(repo.RepoPath())
|
||||
if err != nil {
|
||||
return nil, nil, err
|
||||
|
|
Loading…
Reference in a new issue