aboutsummaryrefslogtreecommitdiffstats
path: root/routers/web/repo/http.go
diff options
context:
space:
mode:
authoryp05327 <576951401@qq.com>2023-02-18 21:11:03 +0900
committerGitHub <noreply@github.com>2023-02-18 20:11:03 +0800
commitbd66fa586a0da58c4cf2f5f8390aef4bac9d0527 (patch)
tree0aa52def7fb8c81ca91a2b882261e9db6a7c174a /routers/web/repo/http.go
parent007d181bb51330c4c24e78c2f40a2e49cae45ed9 (diff)
downloadgitea-bd66fa586a0da58c4cf2f5f8390aef4bac9d0527.tar.gz
gitea-bd66fa586a0da58c4cf2f5f8390aef4bac9d0527.zip
Rename `repo.GetOwner` to `repo.LoadOwner` (#22967)
Fixes https://github.com/go-gitea/gitea/issues/22963 --------- Co-authored-by: Yarden Shoham <hrsi88@gmail.com>
Diffstat (limited to 'routers/web/repo/http.go')
-rw-r--r--routers/web/repo/http.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/routers/web/repo/http.go b/routers/web/repo/http.go
index e82b94b9e8..9d4ffccc6d 100644
--- a/routers/web/repo/http.go
+++ b/routers/web/repo/http.go
@@ -146,8 +146,8 @@ func httpBase(ctx *context.Context) (h *serviceHandler) {
// don't allow anonymous pulls if organization is not public
if isPublicPull {
- if err := repo.GetOwner(ctx); err != nil {
- ctx.ServerError("GetOwner", err)
+ if err := repo.LoadOwner(ctx); err != nil {
+ ctx.ServerError("LoadOwner", err)
return
}