From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.2 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF, T_SCC_BODY_TEXT_LINE shortcircuit=no autolearn=ham autolearn_force=no version=3.4.6 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 379BC1F518 for ; Mon, 1 Jan 2024 01:07:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1704071270; bh=uBggO/+qRBY05ABMo+/jCYavhJVS9JG3UdShZzjFd/M=; h=From:To:Subject:Date:In-Reply-To:References:From; b=NDgCymyAnumhh8m2DeQ4tjBVz1iukvw/wcM2EEdm7J2TbA1QKEf44wVbieXVv19Oo MUaqsoxuCU5RTPmeMkkH6DeFKNiWHRwvNOcV2vZN2osUoqalUsR6vnMjJ3/gEilL9D q+eZ+URROufB3hk0laC7ClJC6UxeyxtEjqQoByww= From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 2/2] view: always show strict|loose note w/ multi-roots Date: Mon, 1 Jan 2024 01:07:49 +0000 Message-ID: <20240101010749.1859763-3-e@80x24.org> In-Reply-To: <20240101010749.1859763-1-e@80x24.org> References: <20240101010749.1859763-1-e@80x24.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: 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. --- lib/PublicInbox/View.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }