-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Closed
Description
You pass the params back into the same function....
Here is a fix:
inline Result ClientImpl::Get(const char *path, const Params ¶ms,
const Headers &headers,
ResponseHandler response_handler,
ContentReceiver content_receiver,
Progress progress)
{
if (params.empty()) {
return Get(path, headers, response_handler, content_receiver, progress);
}
else
{
std::string path_with_query = detail::append_query_params(path, params);
return Get(path_with_query.c_str(), {}, headers, response_handler,
content_receiver, progress);
}
}
Metadata
Metadata
Assignees
Labels
No labels