about summary refs log tree commit homepage
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/PublicInbox/HTTP.pm5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/PublicInbox/HTTP.pm b/lib/PublicInbox/HTTP.pm
index c141fc89..e19c592c 100644
--- a/lib/PublicInbox/HTTP.pm
+++ b/lib/PublicInbox/HTTP.pm
@@ -223,7 +223,10 @@ sub chunked_wcb ($) {
                 return if $_[0] eq '';
                 more($self, sprintf("%x\r\n", bytes::length($_[0])));
                 more($self, $_[0]);
-                $self->write("\r\n");
+
+                # use $self->write("\n\n") if you care about real-time
+                # streaming responses, public-inbox WWW does not.
+                more($self, "\r\n");
         }
 }