We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e1dea2 commit 53c050aCopy full SHA for 53c050a
nanoFramework.System.Net.Http/Http/System.Net.HttpWebRequest.cs
@@ -1948,7 +1948,8 @@ private byte[] GetHTTPRequestData()
1948
}
1949
else
1950
{
1951
- statusLine = Method + " " + Address.AbsolutePath + " HTTP/" + ProtocolVersion + "\r\n"; // .PathAndQuery
+ // statusLine = Method + " " + Address.AbsolutePath + " HTTP/" + ProtocolVersion + "\r\n"; // .PathAndQuery
1952
+ statusLine = Method + " " + Address.PathAndQuery + " HTTP/" + ProtocolVersion + "\r\n";
1953
1954
1955
//most intrinsic headers are stored in the webheaders class
0 commit comments