about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2024-01-01 01:07:49 +0000
committerEric Wong <e@80x24.org>2024-01-02 18:39:40 +0000
commite26488aef99f4b8b28e8bb925704529dbe7d8ae2 (patch)
treea471d073507e6dfc06f7cf4c990ddcabf726bdb2
parent8e253786fb256da75e67d8adc27a759dba23289a (diff)
downloadpublic-inbox-e26488aef99f4b8b28e8bb925704529dbe7d8ae2.tar.gz
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.
-rw-r--r--lib/PublicInbox/View.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm
index d81c66b7..02b93d7b 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
 }