Commit 5589f62c authored by octal's avatar octal

Client: fixed a missing return in RequestBuilder::body

parent 4f4a1131
......@@ -686,6 +686,7 @@ RequestBuilder::cookie(const Cookie& cookie) {
RequestBuilder&
RequestBuilder::body(std::string val) {
request_.body_ = std::move(val);
return *this;
}
Async::Promise<Response>
......
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