Use ghost user if user was not found (#29161) (#29169)

Backport #29161
This commit is contained in:
KN4CK3R
2024-02-14 18:51:51 +01:00
committed by GitHub
parent dd8bc1d61d
commit d823465d94
2 changed files with 12 additions and 0 deletions

View File

@@ -225,6 +225,10 @@ func (comments CommentList) loadAssignees(ctx context.Context) error {
for _, comment := range comments {
comment.Assignee = assignees[comment.AssigneeID]
if comment.Assignee == nil {
comment.AssigneeID = user_model.GhostUserID
comment.Assignee = user_model.NewGhostUser()
}
}
return nil
}