mirror of
https://github.com/go-gitea/gitea
synced 2024-11-12 05:04:24 +00:00
Fix Commits nil pointer dereference (#2203)
This commit is contained in:
parent
9a505fafda
commit
1193627014
@ -47,6 +47,10 @@ func renderIssueLinks(oldCommits *list.List, repoLink string) *list.List {
|
||||
// Commits render branch's commits
|
||||
func Commits(ctx *context.Context) {
|
||||
ctx.Data["PageIsCommits"] = true
|
||||
if ctx.Repo.Commit == nil {
|
||||
ctx.Handle(404, "Commit not found", nil)
|
||||
return
|
||||
}
|
||||
|
||||
commitsCount, err := ctx.Repo.Commit.CommitsCount()
|
||||
if err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user