Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathaniel Moschkin committed Feb 7, 2024
1 parent 407eb05 commit f2f9c6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/networkhelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ bool NetworkHelper::performRequest(boost::beast::http::request<boost::beast::htt
bool NetworkHelper::downloadUrl(const std::string &url, std::function<bool(std::vector<uint8_t> &&)> lambda) noexcept
{
auto uri = parseURI(url);
uri.resource << "?" << uri.query;
uri.resource = uri.resource + "?" + uri.query;
std::cout << "Request downloadUrl: " << url << "\r\n";

http::request<http::string_body> req{http::verb::get, uri.resource, 11};
Expand Down

0 comments on commit f2f9c6b

Please sign in to comment.