Update tutorial-05-http_proxy.md

This commit is contained in:
xiehan
2022-03-03 20:36:29 +08:00
committed by GitHub
parent a6837fdfd6
commit e54c785639

View File

@@ -174,8 +174,8 @@ void http_callback(WFHttpTask *task)
context->proxy_task->set_callback(reply_callback);
/* Copy the remote webserver's response, to proxy response. */
if (resp->get_parsed_body(&body, &len))
resp->append_output_body_nocopy(body, len);
resp->get_parsed_body(&body, &len);
resp->append_output_body_nocopy(body, len);
*proxy_resp = std::move(*resp);
...
}