mirror of
https://github.com/go-gitea/gitea
synced 2024-11-10 12:14:25 +00:00
Both issues/new and settings/hooks/git expect `ctx.Repo.GitRepo` to be set. This PR changes the context code to open the GitRepo. Fixes #8538
This commit is contained in:
parent
0752a3895a
commit
34b8becef0
@ -414,8 +414,8 @@ func RepoAssignment() macaron.Handler {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// repo is empty and display enable
|
// Disable everything when the repo is being created
|
||||||
if ctx.Repo.Repository.IsEmpty || ctx.Repo.Repository.IsBeingCreated() {
|
if ctx.Repo.Repository.IsBeingCreated() {
|
||||||
ctx.Data["BranchName"] = ctx.Repo.Repository.DefaultBranch
|
ctx.Data["BranchName"] = ctx.Repo.Repository.DefaultBranch
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@ -427,6 +427,12 @@ func RepoAssignment() macaron.Handler {
|
|||||||
}
|
}
|
||||||
ctx.Repo.GitRepo = gitRepo
|
ctx.Repo.GitRepo = gitRepo
|
||||||
|
|
||||||
|
// Stop at this point when the repo is empty.
|
||||||
|
if ctx.Repo.Repository.IsEmpty {
|
||||||
|
ctx.Data["BranchName"] = ctx.Repo.Repository.DefaultBranch
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
tags, err := ctx.Repo.GitRepo.GetTags()
|
tags, err := ctx.Repo.GitRepo.GetTags()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
ctx.ServerError("GetTags", err)
|
ctx.ServerError("GetTags", err)
|
||||||
|
Loading…
Reference in New Issue
Block a user