Update clean.js
This commit is contained in:
parent
16e0b45fc1
commit
c03b55812f
@ -24,7 +24,7 @@ const instance = axios.create({
|
|||||||
rejectUnauthorized: false
|
rejectUnauthorized: false
|
||||||
}),
|
}),
|
||||||
validateStatus: function (status) {
|
validateStatus: function (status) {
|
||||||
return status !== 404
|
return status !== 404 && status < 500
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -101,8 +101,7 @@ async function checkStatus(playlist) {
|
|||||||
.then(utils.sleep(config.delay))
|
.then(utils.sleep(config.delay))
|
||||||
.catch(err => {
|
.catch(err => {
|
||||||
clearTimeout(timeout)
|
clearTimeout(timeout)
|
||||||
if (err.response && err.response.status === 404) {
|
if (err.response && (err.response.status === 404 || err.response.status >= 500)) {
|
||||||
//console.error(err)
|
|
||||||
if (config.debug) {
|
if (config.debug) {
|
||||||
console.info(` ${counter} ${chalk.red('offline')} ${chalk.white(channel.url)}`)
|
console.info(` ${counter} ${chalk.red('offline')} ${chalk.white(channel.url)}`)
|
||||||
stats.broken++
|
stats.broken++
|
||||||
|
Loading…
Reference in New Issue
Block a user