aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--routers/repo/issue.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/routers/repo/issue.go b/routers/repo/issue.go
index 88628eab..80929dd7 100644
--- a/routers/repo/issue.go
+++ b/routers/repo/issue.go
@@ -595,6 +595,7 @@ func ViewIssue(ctx *middleware.Context) {
comment *models.Comment
participants []*models.User
)
+ participants = append(participants, issue.Poster)
// Render comments. (and fetch participants)
for _, comment = range issue.Comments {
if comment.Type == models.COMMENT_TYPE_COMMENT {