mirror of https://github.com/adamdruppe/arsd.git
gzip bug
This commit is contained in:
parent
32601f07ed
commit
5dc4bfc79f
9
http2.d
9
http2.d
|
@ -686,11 +686,12 @@ class HttpRequest {
|
||||||
//goto done; // FIXME
|
//goto done; // FIXME
|
||||||
state = State.complete;
|
state = State.complete;
|
||||||
|
|
||||||
auto n = uncompress.uncompress(responseData.content);
|
if(bodyReadingState.isGzipped || bodyReadingState.isDeflated) {
|
||||||
n ~= uncompress.flush();
|
auto n = uncompress.uncompress(responseData.content);
|
||||||
responseData.content = cast(ubyte[]) n;
|
n ~= uncompress.flush();
|
||||||
|
responseData.content = cast(ubyte[]) n;
|
||||||
|
}
|
||||||
|
|
||||||
//if(bodyReadingState.isGzipped || bodyReadingState.isDeflated)
|
|
||||||
// responseData.content ~= cast(ubyte[]) uncompress.flush();
|
// responseData.content ~= cast(ubyte[]) uncompress.flush();
|
||||||
|
|
||||||
responseData.contentText = cast(string) responseData.content;
|
responseData.contentText = cast(string) responseData.content;
|
||||||
|
|
Loading…
Reference in New Issue