]> Sergey Matveev's repositories - public-inbox.git/commitdiff
www: remove "1\n" lines in $MSGID/t/ view
authorEric Wong <e@80x24.org>
Thu, 29 Sep 2022 20:56:29 +0000 (20:56 +0000)
committerEric Wong <e@80x24.org>
Thu, 29 Sep 2022 20:57:43 +0000 (20:57 +0000)
Fixes: ab9c03ff4aa3 "www: use PerlIO::scalar (zfh) for buffering"
lib/PublicInbox/View.pm

index 01c086bf0676bb4904387f0de45aa619c687b3dc..071a20930827654fc0af9c0b0f1108d4bb5a4aa4 100644 (file)
@@ -387,7 +387,8 @@ sub thread_eml_entry {
        my ($ctx, $eml) = @_;
        my ($beg, $end) = thread_adj_level($ctx, $ctx->{level});
        print { $ctx->zfh } $beg, '<pre>';
-       print { $ctx->{zfh} } eml_entry($ctx, $eml), '</pre>', $end;
+       print { $ctx->{zfh} } eml_entry($ctx, $eml), '</pre>';
+       $end;
 }
 
 sub next_in_queue ($$) {