1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Use ghost users in issues/PRs (#1831)

This commit is contained in:
Ethan Koenig
2017-05-30 02:08:36 -04:00
committed by Lunny Xiao
parent 2525195749
commit 367ff327ed

View File

@@ -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
}