]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/HTTP.pm
www: use WwwStream for dumping thread and search views
[public-inbox.git] / lib / PublicInbox / HTTP.pm
index c141fc896d0538875ca5a76c26c413ec910c4652..e19c592c99612ae29960676e5112166d5f5642eb 100644 (file)
@@ -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");
        }
 }