[Linux] Fixing handling redirects with curl

Signed-off-by: S. Kozyr <s.trump@gmail.com>
This commit is contained in:
Sergiy Kozyr 2024-02-09 12:49:46 +02:00 committed by Roman Tsisyk
parent 35af86db77
commit 3b59cec961

View file

@ -278,9 +278,9 @@ bool HttpClient::RunHttpRequest()
if (m_outputFile.empty())
m_serverResponse = ReadFileAsString(rfile);
}
else
else if(m_handleRedirects == false)
{
// Handle HTTP redirect.
// Follow HTTP redirect.
// TODO(AlexZ): Should we check HTTP redirect code here?
LOG(LDEBUG, ("HTTP redirect", m_errorCode, "to", m_urlReceived));