mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-29 23:26:00 +00:00
Fixed: Any 3xx HTTP status codes are redirections
--HG-- branch : develop
This commit is contained in:
parent
f9117d8e94
commit
857b60dd82
1 changed files with 1 additions and 1 deletions
|
@ -277,7 +277,7 @@ void CDownloader::onHeadFinished()
|
||||||
}
|
}
|
||||||
|
|
||||||
// redirection
|
// redirection
|
||||||
if (status == 302 || status == 307)
|
if (status >= 300 && status < 400)
|
||||||
{
|
{
|
||||||
if (redirection.isEmpty())
|
if (redirection.isEmpty())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue