about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2019-09-20 19:42:24 +0000
committerEric Wong <e@80x24.org>2019-09-22 03:08:00 +0000
commit55283284757af5f5d8f63fd17d53340e4dea34fb (patch)
tree77d5da6333c53cc7a492bae3bad8c24032a459a7
parentb1759e873fcd861e76be4b702119e70af267c9f4 (diff)
downloadpublic-inbox-55283284757af5f5d8f63fd17d53340e4dea34fb.tar.gz
feed: remove unused $cmt->{-html_url} field
It was never used, and will not be needed.
-rw-r--r--lib/PublicInbox/Feed.pm3
1 files changed, 0 insertions, 3 deletions
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;