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 E5CFF1F513 for ; Mon, 1 Jan 2024 00:57:33 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=80x24.org; s=selector1; t=1704070654; bh=QJYn19fVLjy+G6eBAMyBtGwD8W1BE8ZyTmcqb91S3Do=; h=From:To:Subject:Date:In-Reply-To:References:From; b=KlRG4B1RVq2wN40Pwgc6RPOua0L7kHgNnnzE89KV26Hi/hLsdY4gVJtFkTJ0wH+Lt 6yHMlj1V++RkDpo0i3aoZFtmdRvWQDwpyRjCjbQxWJJ8ccm6r7rISbD9j9mwvW7X1n 37lycBxFWZDpWk7gxe4Iypl419uoosdocudn5NG0= From: Eric Wong To: spew@80x24.org Subject: [PATCH 2/2] view: always show strict|loose note w/ multi-roots Date: Mon, 1 Jan 2024 00:57:33 +0000 Message-ID: <20240101005733.3796173-2-e@80x24.org> In-Reply-To: <20240101005733.3796173-1-e@80x24.org> References: <20240101005733.3796173-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 b05a132b..b5047222 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -887,8 +887,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 }