mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-13 02:20:03 -04:00
Update format.js
This commit is contained in:
parent
73e0ea9223
commit
019a63e567
1 changed files with 4 additions and 3 deletions
|
@ -8,7 +8,7 @@ const file = require('./helpers/file')
|
|||
const log = require('./helpers/log')
|
||||
const epg = require('./helpers/epg')
|
||||
|
||||
const ignoreStatus = ['Geo-blocked', 'Not 24/7']
|
||||
const ignoreStatus = ['Geo-blocked']
|
||||
|
||||
program
|
||||
.usage('[OPTIONS]...')
|
||||
|
@ -128,13 +128,14 @@ function updateOrigins(channel, requests) {
|
|||
function updateStatus(channel, status) {
|
||||
switch (status) {
|
||||
case 'online':
|
||||
channel.status = channel.status === 'Offline' ? 'Not 24/7' : null
|
||||
if (channel.status !== 'Not 24/7')
|
||||
channel.status = channel.status === 'Offline' ? 'Not 24/7' : null
|
||||
break
|
||||
case 'error_403':
|
||||
channel.status = 'Geo-blocked'
|
||||
break
|
||||
case 'offline':
|
||||
channel.status = 'Offline'
|
||||
if (channel.status !== 'Not 24/7') channel.status = 'Offline'
|
||||
break
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue