Skip to content

Commit

Permalink
Fix url parameters in HTTP_client
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielKrawisz committed Dec 26, 2022
1 parent 79150eb commit 799f46e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/data/networking/HTTP_client.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ namespace data::networking {
return Http(r);
}

HTTP::response inline HTTP_client::GET(string path, map<string, string> params) {
HTTP::response inline HTTP_client::GET(string path, list<entry<string, string>> params) {
return (*this)(Rest.GET(path, params));
}

Expand Down

0 comments on commit 799f46e

Please sign in to comment.