diff options
author | George Hazan <ghazan@miranda.im> | 2018-07-18 13:36:54 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-07-18 13:36:54 +0300 |
commit | 2c66660cb5a114cae20dca90348d28d13a1913e9 (patch) | |
tree | 4eb0981ac771e77d82cf3d85592b85cdaaae0bb0 | |
parent | e94f080dd0e19266003da01583222784c9169fc2 (diff) |
this flag isn't needed too
-rw-r--r-- | plugins/Weather/src/weather_http.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Weather/src/weather_http.cpp b/plugins/Weather/src/weather_http.cpp index 10bcf63690..514bec27e5 100644 --- a/plugins/Weather/src/weather_http.cpp +++ b/plugins/Weather/src/weather_http.cpp @@ -64,7 +64,7 @@ int InternetDownloadFile(char *szUrl, char *cookie, char *userAgent, wchar_t **s // initialize the netlib request
NETLIBHTTPREQUEST nlhr = { sizeof(nlhr) };
nlhr.requestType = REQUEST_GET;
- nlhr.flags = NLHRF_DUMPASTEXT | NLHRF_HTTP11 | NLHRF_PERSISTENT | NLHRF_REDIRECT;
+ nlhr.flags = NLHRF_DUMPASTEXT | NLHRF_HTTP11 | NLHRF_REDIRECT;
nlhr.szUrl = szUrl;
nlhr.headers = headers;
nlhr.headersCount = _countof(headers);
|