]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/Feed.pm
nntp: smsg_range_i: favor ->{$field} lookups when possible
[public-inbox.git] / lib / PublicInbox / Feed.pm
index b770a35077c2f0194db5472a55756f59433a4169..4c1056b4665dec330f69576f56bf345c847073df 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');
 }