From: Eric Wong Date: Fri, 1 Jul 2016 11:10:48 +0000 (+0000) Subject: view: avoid redundant trailing slash for In-Reply-To X-Git-Tag: v1.0.0~330 X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=a87b0cd6de8e1966ab3208322fe5710743a3c958 view: avoid redundant trailing slash for In-Reply-To Oops, fortunately this branch is only exposed to non-Xapian users, right now. --- diff --git a/lib/PublicInbox/View.pm b/lib/PublicInbox/View.pm index 140cfeed..fd882aa0 100644 --- a/lib/PublicInbox/View.pm +++ b/lib/PublicInbox/View.pm @@ -147,7 +147,7 @@ sub index_entry { 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) + $rv .= qq(In-Reply-To: <$html>\n) } $rv .= "\n";