mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
Fix ghost user bug (#1913)
Fix bug where unassigned issues would appear to be assigned to a ghost user
This commit is contained in:
parent
b1b8c5e9f4
commit
73836ce8c4
1 changed files with 6 additions and 0 deletions
|
@ -69,6 +69,9 @@ func (issues IssueList) loadPosters(e Engine) error {
|
|||
}
|
||||
|
||||
for _, issue := range issues {
|
||||
if issue.PosterID <= 0 {
|
||||
continue
|
||||
}
|
||||
var ok bool
|
||||
if issue.Poster, ok = posterMaps[issue.PosterID]; !ok {
|
||||
issue.Poster = NewGhostUser()
|
||||
|
@ -176,6 +179,9 @@ func (issues IssueList) loadAssignees(e Engine) error {
|
|||
}
|
||||
|
||||
for _, issue := range issues {
|
||||
if issue.AssigneeID <= 0 {
|
||||
continue
|
||||
}
|
||||
var ok bool
|
||||
if issue.Assignee, ok = assigneeMaps[issue.AssigneeID]; !ok {
|
||||
issue.Assignee = NewGhostUser()
|
||||
|
|
Loading…
Reference in a new issue