about summary refs log tree commit homepage
path: root/lib/PublicInbox/View.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-08-23 20:09:12 +0000
committerEric Wong <e@80x24.org>2015-08-23 22:35:21 +0000
commitaf10d15487fa9f4086c8f5c74d7ee737997ed905 (patch)
treee834ff51fc6657069e26af4e1f2125c182f40820 /lib/PublicInbox/View.pm
parenta4f7622064f71c02102cb17fce0b4e67782059fc (diff)
downloadpublic-inbox-af10d15487fa9f4086c8f5c74d7ee737997ed905.tar.gz
This is to match what Mail::Thread nad our own search
relies on.  However, we will be more lenient on spaces,
though.
Diffstat (limited to 'lib/PublicInbox/View.pm')
-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 f9081a6d..72bbb946 100644
--- a/lib/PublicInbox/View.pm
+++ b/lib/PublicInbox/View.pm
@@ -419,7 +419,7 @@ sub html_footer {
         Email::Address->purge_cache if $standalone;
 
         my $subj = $mime->header('Subject') || '';
-        $subj = "Re: $subj" unless $subj =~ /\bRe:/;
+        $subj = "Re: $subj" unless $subj =~ /\bRe:/i;
         my $mid = $mime->header('Message-ID');
         my $irt = uri_escape_utf8($mid);
         delete $cc{$to};