[platform] Fix curl HttpClient header parsing.

This commit is contained in:
tatiana-yan 2019-09-27 17:45:28 +03:00 committed by mpimenov
parent 2b7ea2a555
commit d4cd5e1a0f

View file

@ -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)