diff --git a/modules/notification/action/action.go b/modules/notification/action/action.go index 4a257b3618..f7078d3493 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 }