This commit is contained in:
Adam D. Ruppe 2015-12-17 17:23:28 -05:00
parent 32601f07ed
commit 5dc4bfc79f
1 changed files with 5 additions and 4 deletions

View File

@ -686,11 +686,12 @@ class HttpRequest {
//goto done; // FIXME
state = State.complete;
auto n = uncompress.uncompress(responseData.content);
n ~= uncompress.flush();
responseData.content = cast(ubyte[]) n;
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;