From 25ddf77b51a4095b589e7f34ef923f437f817da7 Mon Sep 17 00:00:00 2001 From: mrsdizzie Date: Fri, 18 Sep 2020 13:50:06 -0400 Subject: [PATCH] Fix panic when adding long comment (#12892) Previous PR #12881 causes out of bounds panic by working on wrong string. --- modules/notification/action/action.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/notification/action/action.go b/modules/notification/action/action.go index 4a257b361..f7078d349 100644 --- a/modules/notification/action/action.go +++ b/modules/notification/action/action.go @@ -102,7 +102,7 @@ func (a *actionNotifier) NotifyCreateIssueComment(doer *models.User, repo *model content := "" if len(comment.Content) > 200 { - content = content[:strings.LastIndex(comment.Content[0:200], " ")] + "…" + content = comment.Content[:strings.LastIndex(comment.Content[0:200], " ")] + "…" } else { content = comment.Content }