|
@ -14,6 +14,8 @@ module.exports = function (url, cb) { |
|
|
|
|
|
|
|
|
// redirect
|
|
|
// redirect
|
|
|
if (res.statusCode < 400 && res.statusCode >= 300 && res.headers.location) { |
|
|
if (res.statusCode < 400 && res.statusCode >= 300 && res.headers.location) { |
|
|
|
|
|
res.destroy(); |
|
|
|
|
|
|
|
|
if (++redirectCount > 10) { |
|
|
if (++redirectCount > 10) { |
|
|
cb(new Error('Redirected 10 times. Aborting.')); |
|
|
cb(new Error('Redirected 10 times. Aborting.')); |
|
|
return; |
|
|
return; |
|
@ -24,6 +26,7 @@ module.exports = function (url, cb) { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if (res.statusCode !== 200) { |
|
|
if (res.statusCode !== 200) { |
|
|
|
|
|
res.destroy(); |
|
|
cb(res.statusCode); |
|
|
cb(res.statusCode); |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|