forked from organicmaps/organicmaps
[platform] Fix curl HttpClient header parsing.
This commit is contained in:
parent
2b7ea2a555
commit
d4cd5e1a0f
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue