1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-06 19:35:50 +00:00

Fix missed return (#29450) (#29453)

Backport #29450 by @lunny

Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
Giteabot 2024-02-27 23:33:03 +08:00 committed by GitHub
parent dc48eb070b
commit 2df38af752
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -649,6 +649,7 @@ func UpdateFile(ctx *context.APIContext) {
apiOpts := web.GetForm(ctx).(*api.UpdateFileOptions)
if ctx.Repo.Repository.IsEmpty {
ctx.Error(http.StatusUnprocessableEntity, "RepoIsEmpty", fmt.Errorf("repo is empty"))
return
}
if apiOpts.BranchName == "" {