mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-13 02:20:03 -04:00
Skip "403 Forbidden" error during test
Usually gives "false positive" results
This commit is contained in:
parent
68f20192f5
commit
7e5c05148a
1 changed files with 2 additions and 1 deletions
|
@ -37,7 +37,8 @@ async function test() {
|
|||
if (
|
||||
!item.status.ok &&
|
||||
item.status.reason !== 'Timed out' &&
|
||||
item.status.reason !== 'Duplicate'
|
||||
item.status.reason !== 'Duplicate' &&
|
||||
item.status.reason !== 'Server returned 403 Forbidden (access denied)'
|
||||
) {
|
||||
stats.failures++
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue