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