Merge branch 'master' into fix-channels-json

This commit is contained in:
Shadix A 2021-12-31 13:53:58 +02:00 committed by GitHub
commit ed30a70c9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 134 additions and 132 deletions

View file

@ -96,7 +96,9 @@ async function updateStreams() {
status = item.status
else if (prevStatus.code === 'geo_blocked') // geo_blocked -> * = geo_blocked
status = item.status
else if(prevStatus.code === 'offline' && status.code === 'online') // offline -> online = not_247
else if (status.code === 'geo_blocked') // * -> geo_blocked = *
status = item.status
else if (prevStatus.code === 'offline' && status.code === 'online') // offline -> online = not_247
status = statuses['not_247']