Commit f8f7717d authored by knowledge4igor's avatar knowledge4igor

Fix problem with RequestBuilder when calling send method second time and...

Fix problem with RequestBuilder when calling send method second time and futher on same RequestBuilder object
parent 988a6f7c
...@@ -747,7 +747,7 @@ RequestBuilder::body(std::string&& val) { ...@@ -747,7 +747,7 @@ RequestBuilder::body(std::string&& val) {
Async::Promise<Response> Async::Promise<Response>
RequestBuilder::send() { RequestBuilder::send() {
return client_->doRequest(std::move(request_), timeout_); return client_->doRequest(request_, timeout_);
} }
Client::Options& Client::Options&
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment