diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/gitlab/email/reply_parser.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/email/reply_parser.rb b/lib/gitlab/email/reply_parser.rb index 5957cbbad7e..96d0a4f5153 100644 --- a/lib/gitlab/email/reply_parser.rb +++ b/lib/gitlab/email/reply_parser.rb @@ -15,7 +15,7 @@ module Gitlab body = EmailReplyTrimmer.trim(body) or return "" - # [jneen] not using /\s+$/ here because that deletes empty lines + # not using /\s+$/ here because that deletes empty lines body = body.gsub(/[ \t]$/, '') body.force_encoding(encoding).encode("UTF-8") |