]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Feed.pm
wwwstream: reduce object graph depth
[public-inbox.git] / lib / PublicInbox / Feed.pm
index b770a35077c2f0194db5472a55756f59433a4169..f25dd267e30a8155f3546f509d47f6bdb2bf3b17 100644 (file)
@@ -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');
 }
@@ -70,7 +70,7 @@ sub new_html {
        $ctx->{-html_tip} = '<pre>';
        $ctx->{-upfx} = '';
        $ctx->{-hr} = 1;
-       PublicInbox::WwwStream->response($ctx, 200, \&new_html_i);
+       PublicInbox::WwwStream::response($ctx, 200, \&new_html_i);
 }
 
 # private subs