mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-04 16:29:37 +00:00
Use ghost users in issues/PRs (#1831)
This commit is contained in:
parent
2525195749
commit
367ff327ed
1 changed files with 8 additions and 2 deletions
|
@ -69,7 +69,10 @@ func (issues IssueList) loadPosters(e Engine) error {
|
|||
}
|
||||
|
||||
for _, issue := range issues {
|
||||
issue.Poster = posterMaps[issue.PosterID]
|
||||
var ok bool
|
||||
if issue.Poster, ok = posterMaps[issue.PosterID]; !ok {
|
||||
issue.Poster = NewGhostUser()
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
@ -173,7 +176,10 @@ func (issues IssueList) loadAssignees(e Engine) error {
|
|||
}
|
||||
|
||||
for _, issue := range issues {
|
||||
issue.Assignee = assigneeMaps[issue.AssigneeID]
|
||||
var ok bool
|
||||
if issue.Assignee, ok = assigneeMaps[issue.AssigneeID]; !ok {
|
||||
issue.Assignee = NewGhostUser()
|
||||
}
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue