From f516304b04ea585e8dc9f5e7c979efb1f547e7a0 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 5 Feb 2018 23:25:07 -0500 Subject: [PATCH] bug fixes --- http2.d | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/http2.d b/http2.d index 1b16bf9..041cc1f 100644 --- a/http2.d +++ b/http2.d @@ -898,10 +898,9 @@ class HttpRequest { bodyReadingState.chunkedState = 0; - // skip the tailing chunk of headers - // FIXME - if(data.length == 5 && data == [48, 13, 10, 13, 10]) - a = cast(int) data.length; + while(data[a] != 10) + a++; + data = data[a + 1 .. $]; if(bodyReadingState.isGzipped || bodyReadingState.isDeflated) { auto n = uncompress.uncompress(responseData.content);