mirror of https://github.com/go-gitea/gitea.git
Fix wrong error info in RepoRefForAPI (#24344)
Co-authored-by: Giteabot <teabot@gitea.io>
This commit is contained in:
parent
62eafea3f9
commit
61d08f446a
|
@ -337,7 +337,7 @@ func RepoRefForAPI(next http.Handler) http.Handler {
|
||||||
if git.IsErrNotExist(err) {
|
if git.IsErrNotExist(err) {
|
||||||
ctx.NotFound()
|
ctx.NotFound()
|
||||||
} else {
|
} else {
|
||||||
ctx.Error(http.StatusInternalServerError, "GetBlobByPath", err)
|
ctx.Error(http.StatusInternalServerError, "GetCommit", err)
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue