httpfetch: Enable gzip support

pull/6746/merge
sfan5 2017-11-04 22:19:27 +01:00 committed by SmallJoker
parent 4d9bf75d3a
commit 6808a3d144
1 changed files with 1 additions and 0 deletions

View File

@ -248,6 +248,7 @@ HTTPFetchOngoing::HTTPFetchOngoing(const HTTPFetchRequest &request_,
curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1);
curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1);
curl_easy_setopt(curl, CURLOPT_MAXREDIRS, 1);
curl_easy_setopt(curl, CURLOPT_ENCODING, "gzip");
std::string bind_address = g_settings->get("bind_address");
if (!bind_address.empty()) {