about summary refs log tree commit homepage
path: root/lib/PublicInbox/Mbox.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/Mbox.pm')
-rw-r--r--lib/PublicInbox/Mbox.pm2
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/PublicInbox/Mbox.pm b/lib/PublicInbox/Mbox.pm
index c14037f4..381bcada 100644
--- a/lib/PublicInbox/Mbox.pm
+++ b/lib/PublicInbox/Mbox.pm
@@ -41,7 +41,6 @@ sub getline {
         }
         for (; !defined($cur) && $head != $tail; $head++) {
                 my $smsg = PublicInbox::SearchMsg->get($head, $db, $ctx->{mid});
-                next if $smsg->type ne 'mail';
                 my $mref = $ctx->{-inbox}->msg_by_smsg($smsg) or next;
                 $cur = Email::Simple->new($mref);
                 $cur = msg_str($ctx, $cur);
@@ -66,7 +65,6 @@ sub emit_raw {
                         for (; !defined($first) && $head != $tail; $head++) {
                                 my @args = ($head, $db, $mid);
                                 my $smsg = PublicInbox::SearchMsg->get(@args);
-                                next if $smsg->type ne 'mail';
                                 my $mref = $ibx->msg_by_smsg($smsg) or next;
                                 $first = Email::Simple->new($mref);
                         }