diff options
author | yp05327 <576951401@qq.com> | 2023-02-18 21:11:03 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-18 20:11:03 +0800 |
commit | bd66fa586a0da58c4cf2f5f8390aef4bac9d0527 (patch) | |
tree | 0aa52def7fb8c81ca91a2b882261e9db6a7c174a /models/issues/comment.go | |
parent | 007d181bb51330c4c24e78c2f40a2e49cae45ed9 (diff) | |
download | gitea-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 'models/issues/comment.go')
-rw-r--r-- | models/issues/comment.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/models/issues/comment.go b/models/issues/comment.go index 36e7b8e785..a47dc7c151 100644 --- a/models/issues/comment.go +++ b/models/issues/comment.go @@ -620,7 +620,7 @@ func (c *Comment) LoadAssigneeUserAndTeam() error { return err } - if err = c.Issue.Repo.GetOwner(db.DefaultContext); err != nil { + if err = c.Issue.Repo.LoadOwner(db.DefaultContext); err != nil { return err } @@ -824,7 +824,7 @@ func CreateComment(ctx context.Context, opts *CreateCommentOptions) (_ *Comment, return nil, err } - if err = opts.Repo.GetOwner(ctx); err != nil { + if err = opts.Repo.LoadOwner(ctx); err != nil { return nil, err } |