about summary refs log tree commit homepage
path: root/lib/PublicInbox/Feed.pm
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2016-04-13 03:04:11 +0000
committerEric Wong <e@80x24.org>2016-04-13 03:04:41 +0000
commite06797ae541b8fcb65030531d854184e7ba2c70d (patch)
tree875656cc102facd1b44710366af9cd0d3fb8d480 /lib/PublicInbox/Feed.pm
parent27da06a699bd6cb527864827b7a067d637208d30 (diff)
downloadpublic-inbox-e06797ae541b8fcb65030531d854184e7ba2c70d.tar.gz
Quote-folding can be detrimental as it fails to hide the
real problem of over-quoting.

Over-quoting wastes bandwidth and space for all readers, not
just WWW readers of the public-inbox.  So hopefully removing
quote-folding support from the WWW interface can shame those
repliers into quoting only relevant portions of what they reply
to.
Diffstat (limited to 'lib/PublicInbox/Feed.pm')
-rw-r--r--lib/PublicInbox/Feed.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/PublicInbox/Feed.pm b/lib/PublicInbox/Feed.pm
index 54fa6e5d..096bff9d 100644
--- a/lib/PublicInbox/Feed.pm
+++ b/lib/PublicInbox/Feed.pm
@@ -316,7 +316,7 @@ sub add_to_feed {
         defined $mid or return 0;
         $mid = PublicInbox::Hval->new_msgid($mid);
         my $href = $mid->as_href;
-        my $content = PublicInbox::View->feed_entry($mime, "$midurl$href/f/");
+        my $content = PublicInbox::View->feed_entry($mime);
         defined($content) or return 0;
         $mime = undef;