Add encode_url() call to Client class when adding parameter values.
This commit is contained in:
parent
3fea8adf5d
commit
f3f4ab8499
@ -2125,7 +2125,7 @@ Client::Post(const char *path, const Headers &headers, const Params ¶ms) {
|
|||||||
if (it != params.begin()) { query += "&"; }
|
if (it != params.begin()) { query += "&"; }
|
||||||
query += it->first;
|
query += it->first;
|
||||||
query += "=";
|
query += "=";
|
||||||
query += it->second;
|
query += detail::encode_url(it->second);
|
||||||
}
|
}
|
||||||
|
|
||||||
return Post(path, headers, query, "application/x-www-form-urlencoded");
|
return Post(path, headers, query, "application/x-www-form-urlencoded");
|
||||||
|
Loading…
x
Reference in New Issue
Block a user