From 2665728ee75c05be3555c683ada3b5a1e60a83da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kim=20=22BKC=22=20Carlb=C3=A4cker?= Date: Wed, 20 Jan 2016 17:53:28 +0100 Subject: [PATCH] Fix OP not 'participating' until commented --- routers/repo/issue.go | 1 + 1 file changed, 1 insertion(+) diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 88628eab9..80929dd77 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 {