From 73836ce8c465588f40b3d43d49a784d679966822 Mon Sep 17 00:00:00 2001
From: Ethan Koenig <etk39@cornell.edu>
Date: Thu, 8 Jun 2017 21:51:31 -0400
Subject: [PATCH] Fix ghost user bug (#1913)

Fix bug where unassigned issues would appear to be assigned to a ghost user
---
 models/issue_list.go | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/models/issue_list.go b/models/issue_list.go
index c317f1a157..cef4ec03c7 100644
--- a/models/issue_list.go
+++ b/models/issue_list.go
@@ -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()