Skip to content

Commit 801750c

Browse files
committed
HTTPWasmCLient: Fixup post
1 parent ee4b719 commit 801750c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

lib/src/http_wasm.cc

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -427,12 +427,13 @@ class HTTPWasmClient : public HTTPClient {
427427
LEN *= 256;
428428
LEN += ((uint8_t *)exe)[0];
429429
res->body = string(exe + 4, LEN);
430-
/*
431-
if (info.content_handler) {
430+
431+
/*
432+
if (info.content_handler) {
432433
info.content_handler((const unsigned char *)exe + 4, LEN);
433434
}
434-
*/
435-
// info.buffer_out += string(exe+4, LEN);
435+
*/
436+
info.buffer_out += string(exe+4, LEN);
436437
free(exe);
437438
}
438439

0 commit comments

Comments
 (0)