mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:38:58 +00:00
Backport #29161 (cherry picked from commit d823465d94b3b43945eace060000db9334eca52d)
This commit is contained in:
parent
d3846df1f9
commit
aced7547c2
2 changed files with 12 additions and 0 deletions
|
@ -225,6 +225,10 @@ func (comments CommentList) loadAssignees(ctx context.Context) error {
|
||||||
|
|
||||||
for _, comment := range comments {
|
for _, comment := range comments {
|
||||||
comment.Assignee = assignees[comment.AssigneeID]
|
comment.Assignee = assignees[comment.AssigneeID]
|
||||||
|
if comment.Assignee == nil {
|
||||||
|
comment.AssigneeID = user_model.GhostUserID
|
||||||
|
comment.Assignee = user_model.NewGhostUser()
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
|
@ -159,6 +159,14 @@ func (r *Review) LoadReviewer(ctx context.Context) (err error) {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
r.Reviewer, err = user_model.GetPossibleUserByID(ctx, r.ReviewerID)
|
r.Reviewer, err = user_model.GetPossibleUserByID(ctx, r.ReviewerID)
|
||||||
|
if err != nil {
|
||||||
|
if !user_model.IsErrUserNotExist(err) {
|
||||||
|
return fmt.Errorf("GetPossibleUserByID [%d]: %w", r.ReviewerID, err)
|
||||||
|
}
|
||||||
|
r.ReviewerID = user_model.GhostUserID
|
||||||
|
r.Reviewer = user_model.NewGhostUser()
|
||||||
|
return nil
|
||||||
|
}
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue