lib/PublicInbox/Feed.pm | 4 +--- diff --git a/lib/PublicInbox/Feed.pm b/lib/PublicInbox/Feed.pm index 54feaf5b0f98a52d5d25acc2eafc806cd9b11d1b..6658a52b8794698f9a2bc2c6b23d27c60ca54c4c 100644 --- a/lib/PublicInbox/Feed.pm +++ b/lib/PublicInbox/Feed.pm @@ -287,8 +287,8 @@ } sub dump_html_line { my ($self, $level, $args) = @_; # args => [ $html, $midurl ] - $args->[0] .= (' ' x $level); if ($self->message) { + $args->[0] .= (' ' x $level); my $simple = $self->message; my $subj = utf8_header($simple, "Subject"); my $mid = utf8_header($simple, "Message-ID"); @@ -302,8 +302,6 @@ (defined($from) && length($from)) or $from = $from[0]->address; $from = xs_html($from); $subj = xs_html($subj); $args->[0] .= "$subj $from\n"; - } else { - $args->[0] .= "[ Message not available ]\n"; } dump_html_line($self->child, $level+1, $args) if $self->child; dump_html_line($self->next, $level, $args) if $self->next;