We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d853d6 commit 4d24db2Copy full SHA for 4d24db2
httplib.h
@@ -5228,9 +5228,9 @@ inline std::string params_to_query_str(const Params ¶ms) {
5228
5229
for (auto it = params.begin(); it != params.end(); ++it) {
5230
if (it != params.begin()) { query += "&"; }
5231
- query += httplib::encode_query_component(it->first);
+ query += encode_query_component(it->first);
5232
query += "=";
5233
- query += httplib::encode_query_component(it->second);
+ query += encode_query_component(it->second);
5234
}
5235
return query;
5236
0 commit comments