Commit 1b8a576d authored by http://jneen.net/'s avatar http://jneen.net/

Be more certain in the comment

parent f02f238d
...@@ -18,8 +18,9 @@ module Gitlab ...@@ -18,8 +18,9 @@ module Gitlab
# not using /\s+$/ here because that deletes empty lines # not using /\s+$/ here because that deletes empty lines
body = body.gsub(/[ \t]$/, '') body = body.gsub(/[ \t]$/, '')
# TODO [jneen]: do we want to allow empty-quoting? (replies only containing a blockquote) # NOTE: We currently don't support empty quotes.
# EmailReplyTrimmer allows this as a special case, so we detect it manually here. # EmailReplyTrimmer allows this as a special case,
# so we detect it manually here.
return "" if body.lines.all? { |l| l.strip.empty? || l.start_with?('>') } return "" if body.lines.all? { |l| l.strip.empty? || l.start_with?('>') }
body.force_encoding(encoding).encode("UTF-8") body.force_encoding(encoding).encode("UTF-8")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment