Skip to content

Commit 4d24db2

Browse files
committed
Update
1 parent 3d853d6 commit 4d24db2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

httplib.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5228,9 +5228,9 @@ inline std::string params_to_query_str(const Params &params) {
52285228

52295229
for (auto it = params.begin(); it != params.end(); ++it) {
52305230
if (it != params.begin()) { query += "&"; }
5231-
query += httplib::encode_query_component(it->first);
5231+
query += encode_query_component(it->first);
52325232
query += "=";
5233-
query += httplib::encode_query_component(it->second);
5233+
query += encode_query_component(it->second);
52345234
}
52355235
return query;
52365236
}

0 commit comments

Comments
 (0)