Fix panic when adding long comment (#12892)

Previous PR #12881 causes out of bounds panic by working on wrong string.
mj-v1.14.3
mrsdizzie 4 years ago committed by GitHub
parent 54ae448588
commit 25ddf77b51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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
}

Loading…
Cancel
Save