Update package file download sets User-Agent header too now
This commit is contained in:
parent
e88f1b429f
commit
f1a3ae730a
@ -496,6 +496,14 @@ bool wxUpdCheckApp::DownloadUpdatePackage(const wxString &fileName)
|
|||||||
if (!url.IsOk())
|
if (!url.IsOk())
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
if (url.HasScheme()) {
|
||||||
|
const wxString scheme = url.GetScheme();
|
||||||
|
if (scheme == wxT("http") || scheme == wxT("https")) {
|
||||||
|
wxHTTP &http = (wxHTTP&)url.GetProtocol();
|
||||||
|
http.SetHeader(wxS("User-Agent"), wxS("Updater/") wxS(UPDATER_VERSION_STR));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
wxLogStatus(wxT("Downloading update package from %s..."), m_urls[i].c_str());
|
wxLogStatus(wxT("Downloading update package from %s..."), m_urls[i].c_str());
|
||||||
wxInputStream *stream = url.GetInputStream();
|
wxInputStream *stream = url.GetInputStream();
|
||||||
if (!stream) {
|
if (!stream) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user