aboutsummaryrefslogtreecommitdiffstats
path: root/models/issues/comment.go
diff options
context:
space:
mode:
Diffstat (limited to 'models/issues/comment.go')
-rw-r--r--models/issues/comment.go4
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
}