diff --git a/platform/http_client.cpp b/platform/http_client.cpp index 79af43b585..9eb74e9b38 100644 --- a/platform/http_client.cpp +++ b/platform/http_client.cpp @@ -12,11 +12,6 @@ namespace platform { HttpClient::HttpClient(string const & url) : m_urlRequested(url) { -// Http client for linux supports only "deflate" encoding, but osrm server cannot -// correctly process "Accept-Encoding: deflate" header, so do not encode data on linux. -#if !defined(OMIM_OS_LINUX) - m_headers.emplace("Accept-Encoding", "gzip, deflate"); -#endif } bool HttpClient::RunHttpRequest(string & response, SuccessChecker checker /* = nullptr */)