1
1
Fork 1
mirror of https://github.com/go-gitea/gitea.git synced 2024-05-04 12:46:08 +02:00

Fix possible panic when repository is empty (#20509) (#20527)

This commit is contained in:
6543 2022-07-28 21:02:53 +02:00 committed by GitHub
parent eeaa9250e0
commit 9aa13c585e
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -856,10 +856,14 @@ func renderCode(ctx *context.Context) {
ctx.Data["PageIsViewCode"] = true
if ctx.Repo.Repository.IsEmpty {
reallyEmpty, err := ctx.Repo.GitRepo.IsEmpty()
if err != nil {
ctx.ServerError("GitRepo.IsEmpty", err)
return
reallyEmpty := true
var err error
if ctx.Repo.GitRepo != nil {
reallyEmpty, err = ctx.Repo.GitRepo.IsEmpty()
if err != nil {
ctx.ServerError("GitRepo.IsEmpty", err)
return
}
}
if reallyEmpty {
ctx.HTML(http.StatusOK, tplRepoEMPTY)