Fix WinHTTP GET parameter
An additional ? was send to the server, resulting in ignoring the first get parameter
This commit is contained in:
parent
1c57699e92
commit
a6c9fd2603
1 changed files with 1 additions and 1 deletions
|
|
@ -330,7 +330,7 @@ void wxWebRequestWinHTTP::Start()
|
|||
|
||||
wxString objectName(urlComps.lpszUrlPath, urlComps.dwUrlPathLength);
|
||||
if ( urlComps.dwExtraInfoLength )
|
||||
objectName += "?" + wxString(urlComps.lpszExtraInfo, urlComps.dwExtraInfoLength);
|
||||
objectName += wxString(urlComps.lpszExtraInfo, urlComps.dwExtraInfoLength);
|
||||
|
||||
// Open a request
|
||||
static const wchar_t* acceptedTypes[] = { L"*/*", NULL };
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue