mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-09 03:11:51 +01:00
Fix panic when adding long comment (#12892)
Previous PR #12881 causes out of bounds panic by working on wrong string.
This commit is contained in:
parent
54ae448588
commit
25ddf77b51
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ func (a *actionNotifier) NotifyCreateIssueComment(doer *models.User, repo *model
|
||||||
content := ""
|
content := ""
|
||||||
|
|
||||||
if len(comment.Content) > 200 {
|
if len(comment.Content) > 200 {
|
||||||
content = content[:strings.LastIndex(comment.Content[0:200], " ")] + "…"
|
content = comment.Content[:strings.LastIndex(comment.Content[0:200], " ")] + "…"
|
||||||
} else {
|
} else {
|
||||||
content = comment.Content
|
content = comment.Content
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue