From: Eric Wong Date: Fri, 20 Sep 2019 19:42:24 +0000 (+0000) Subject: feed: remove unused $cmt->{-html_url} field X-Git-Tag: v1.2.0~78 X-Git-Url: http://www.git.stargrave.org/?p=public-inbox.git;a=commitdiff_plain;h=55283284757af5f5d8f63fd17d53340e4dea34fb feed: remove unused $cmt->{-html_url} field It was never used, and will not be needed. --- diff --git a/lib/PublicInbox/Feed.pm b/lib/PublicInbox/Feed.pm index da230525..6d659759 100644 --- a/lib/PublicInbox/Feed.pm +++ b/lib/PublicInbox/Feed.pm @@ -31,9 +31,6 @@ sub generate_thread_atom { my $msgs = $ibx->over->get_thread($mid); return _no_thread() unless @$msgs; - my $html_url = $ibx->base_url($ctx->{env}); - $html_url .= PublicInbox::Hval->new_msgid($mid)->{href}; - $ctx->{-html_url} = $html_url; PublicInbox::WwwAtomStream->response($ctx, 200, sub { while (my $smsg = shift @$msgs) { $ibx->smsg_mime($smsg) and return $smsg;