From: Eric Wong Date: Thu, 1 Sep 2022 08:42:55 +0000 (+0000) Subject: www: always show subject for root of thread skeleton X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=e512d54b21ddea2228fc19a3c5a19fa4b73c6040;p=public-inbox.git www: always show subject for root of thread skeleton For users with short attention spans, the root message of should have the Subject, since is often truncated in most browsers. --- diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm index f29fff50..2e5228e1 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -777,7 +777,6 @@ sub thread_skel ($$$) { # when multiple Subject: headers are present, so we follow suit: my $subj = $hdr->header('Subject') // ''; $subj = '(no subject)' if $subj eq ''; - $ctx->{prev_subj} = [ split(/ /, subject_normalized($subj)) ]; $ctx->{cur} = $mid; $ctx->{prev_attr} = ''; $ctx->{prev_level} = 0;