fix wrong system notice when repository is empty (#9010)

This commit is contained in:
Lunny Xiao 2019-11-15 18:53:20 +08:00 committed by zeripath
parent 21ae9838e0
commit c0c2624079
1 changed files with 5 additions and 0 deletions

View File

@ -10,6 +10,11 @@ import (
// SetEditorconfigIfExists set editor config as render variable
func SetEditorconfigIfExists(ctx *context.Context) {
if ctx.Repo.Repository.IsEmpty {
ctx.Data["Editorconfig"] = nil
return
}
ec, err := ctx.Repo.GetEditorconfig()
if err != nil && !git.IsErrNotExist(err) {