From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-4.0 required=3.0 tests=ALL_TRUSTED,BAYES_00 shortcircuit=no autolearn=ham autolearn_force=no version=3.4.0 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 519DE20FDA for ; Thu, 30 Jun 2016 09:21:49 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Subject: [PATCH 12/13] view: fixup bad reference to new_msgid Date: Thu, 30 Jun 2016 09:21:42 +0000 Message-Id: <20160630092143.31651-13-e@80x24.org> In-Reply-To: <20160630092143.31651-1-e@80x24.org> References: <20160630092143.31651-1-e@80x24.org> List-Id: Oops, this endpoint needs testing :x --- 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 db2bd20..b4f80d1 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -129,7 +129,7 @@ sub index_entry { my $mapping = $ctx->{mapping}; if (!$mapping && $irt) { - my $mirt = PublicInbox::Hval->msgid($irt); + my $mirt = PublicInbox::Hval->new_msgid($irt); my $href = $upfx . $mirt->as_href . '/'; my $html = $mirt->as_html; $rv .= qq(In-Reply-To: <$html>\n) -- EW