Skip to content

Commit 78d691b

Browse files
committed
HTTPSClient::Request::Request uses GET by default instead of empty string.
1 parent b796337 commit 78d691b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/common/HTTPSClient.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ bool HTTPSClient::ci_string_less::operator()(const std::string &lhs, const std::
3030
}
3131

3232
HTTPSClient::Request::Request(const std::string &url)
33-
: url(url)
34-
, method("")
33+
: url(url)
34+
, method("GET")
3535
{
3636
}
3737

0 commit comments

Comments
 (0)