about summary refs log tree commit homepage
diff options
context:
space:
mode:
-rw-r--r--lib/PublicInbox/View.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm
index ed7d0b66..946ea2e5 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -92,7 +92,7 @@ sub add_text_body_short {
         my $s = ascii_html($enc->decode($part->body));
         $s =~ s!^((?:(?:>[^\n]*)\n)+)!
                 my $cur = $1;
-                my @lines = split(/\n(?:>\s*)?/, $cur);
+                my @lines = split(/\n/, $cur);
                 if (@lines > MAX_INLINE_QUOTED) {
                         # show a short snippet of quoted text
                         $cur = join(' ', @lines);