Browse Source

Show second line by using >= 1 instead of > 1 (#4251)

Signed-off-by: Jonas Franz <info@jonasfranz.software>
for-closed-social
Jonas Franz 6 years ago
committed by techknowlogick
parent
commit
85414d8b75
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/templates/helper.go

+ 1
- 1
modules/templates/helper.go View File

@ -323,7 +323,7 @@ func RenderCommitBody(msg, urlPrefix string, metas map[string]string) template.H
// IsMultilineCommitMessage checks to see if a commit message contains multiple lines.
func IsMultilineCommitMessage(msg string) bool {
return strings.Count(strings.TrimSpace(msg), "\n") > 1
return strings.Count(strings.TrimSpace(msg), "\n") >= 1
}
// Actioner describes an action

Loading…
Cancel
Save