]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Feed.pm
nntp: support slow blob retrievals
[public-inbox.git] / lib / PublicInbox / Feed.pm
index e64628be830a34675b4c0c01462ec615af045329..4c1056b4665dec330f69576f56bf345c847073df 100644 (file)
@@ -12,7 +12,7 @@ use PublicInbox::Smsg; # this loads w/o Search::Xapian
 sub generate_i {
        my ($ctx) = @_;
        while (my $smsg = shift @{$ctx->{msgs}}) {
-               $ctx->{-inbox}->smsg_mime($smsg) and return $smsg;
+               return $smsg;
        }
 }
 
@@ -53,9 +53,9 @@ sub new_html_i {
        my ($nr, $ctx) = @_;
        my $msgs = $ctx->{msgs};
        while (my $smsg = shift @$msgs) {
-               my $m = $ctx->{-inbox}->smsg_mime($smsg) or next;
-               my $more = scalar @$msgs;
-               return PublicInbox::View::index_entry($m, $ctx, $more);
+               my $eml = $ctx->{-inbox}->smsg_eml($smsg) or next;
+               return PublicInbox::View::eml_entry($ctx, $smsg, $eml,
+                                                       scalar @$msgs);
        }
        PublicInbox::View::pagination_footer($ctx, './new.html');
 }