mirror of https://github.com/adamdruppe/arsd.git
bug fixes
This commit is contained in:
parent
98200f357d
commit
f516304b04
7
http2.d
7
http2.d
|
@ -898,10 +898,9 @@ class HttpRequest {
|
||||||
|
|
||||||
bodyReadingState.chunkedState = 0;
|
bodyReadingState.chunkedState = 0;
|
||||||
|
|
||||||
// skip the tailing chunk of headers
|
while(data[a] != 10)
|
||||||
// FIXME
|
a++;
|
||||||
if(data.length == 5 && data == [48, 13, 10, 13, 10])
|
data = data[a + 1 .. $];
|
||||||
a = cast(int) data.length;
|
|
||||||
|
|
||||||
if(bodyReadingState.isGzipped || bodyReadingState.isDeflated) {
|
if(bodyReadingState.isGzipped || bodyReadingState.isDeflated) {
|
||||||
auto n = uncompress.uncompress(responseData.content);
|
auto n = uncompress.uncompress(responseData.content);
|
||||||
|
|
Loading…
Reference in New Issue