From: Eric Wong Date: Mon, 1 Jan 2024 01:07:49 +0000 (+0000) Subject: view: always show strict|loose note w/ multi-roots X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e26488aef99f4b8b28e8bb925704529dbe7d8ae2;p=thirdparty%2Fpublic-inbox.git view: always show strict|loose note w/ multi-roots For thread skeletons with multiple roots, it makes sense to note the strict|loose delineation even when the first message matches the desired Message-ID. --- diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm index d81c66b7e..02b93d7bf 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -885,8 +885,8 @@ sub thread_results { my $tip = splice(@$rootset, $idx, 1); @$rootset = reverse @$rootset; unshift @$rootset, $tip; - $ctx->{sl_note} = strict_loose_note($nr); } + $ctx->{sl_note} = strict_loose_note($nr); } $rootset }