about summary refs log tree commit homepage
path: root/lib/PublicInbox
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox')
-rw-r--r--lib/PublicInbox/Import.pm7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/PublicInbox/Import.pm b/lib/PublicInbox/Import.pm
index c13d4834..5ffc26ef 100644
--- a/lib/PublicInbox/Import.pm
+++ b/lib/PublicInbox/Import.pm
@@ -112,8 +112,11 @@ sub remove {
         defined($n) or die "read final byte of cat-blob failed: $!";
         die "bad read on final byte: <$lf>" if $lf ne "\n";
         my $cur = Email::MIME->new($buf);
-        if ($cur->header('Subject') ne $mime->header('Subject') ||
-                        norm_body($cur) ne norm_body($mime)) {
+        my $cur_s = $cur->header('Subject');
+        $cur_s = '' unless defined $cur_s;
+        my $cur_m = $mime->header('Subject');
+        $cur_m = '' unless defined $cur_m;
+        if ($cur_s ne $cur_m || norm_body($cur) ne norm_body($mime)) {
                 return ('MISMATCH', $cur);
         }