diff --git a/platform/http_client_curl.cpp b/platform/http_client_curl.cpp index c1a8f0bca7..7add191acf 100644 --- a/platform/http_client_curl.cpp +++ b/platform/http_client_curl.cpp @@ -237,13 +237,13 @@ bool HttpClient::RunHttpRequest() std::string headerKey; for (auto const & header : headers) { - if (header.first == "Set-Cookie") + if (strings::EqualNoCase(header.first, "Set-Cookie")) { serverCookies += header.second + ", "; } else { - if (header.first == "Location") + if (strings::EqualNoCase(header.first, "Location")) m_urlReceived = header.second; if (m_loadHeaders)