Only update poster in issue/comment list if it has been loaded (#31216)

Previously, all posters were updated, even if they were not part of
posterMaps. In that case, a ghost user was erroneously inserted.

Fixes #31213.
pull/31209/head^2
Max Wipfli 6 months ago committed by GitHub
parent ab458ce10b
commit 3cc7f763c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      models/issues/comment_list.go
  2. 2
      models/issues/issue_list.go

@ -32,8 +32,10 @@ func (comments CommentList) LoadPosters(ctx context.Context) error {
}
for _, comment := range comments {
if comment.Poster == nil {
comment.Poster = getPoster(comment.PosterID, posterMaps)
}
}
return nil
}

@ -87,8 +87,10 @@ func (issues IssueList) LoadPosters(ctx context.Context) error {
}
for _, issue := range issues {
if issue.Poster == nil {
issue.Poster = getPoster(issue.PosterID, posterMaps)
}
}
return nil
}

Loading…
Cancel
Save