From 546c8ff7b157405460e0315d23abcb8baf4e1545 Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Fri, 6 Aug 2021 07:49:39 +0300 Subject: [PATCH] Update detect-resolution.js --- scripts/detect-resolution.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/detect-resolution.js b/scripts/detect-resolution.js index 5c01841f5..5da6a282f 100644 --- a/scripts/detect-resolution.js +++ b/scripts/detect-resolution.js @@ -15,6 +15,7 @@ program .parse(process.argv) const config = program.opts() +const ignoreStatus = ['Offline'] const instance = axios.create({ timeout: config.timeout, maxContentLength: 200000, @@ -50,7 +51,10 @@ async function detectResolution(playlist) { let updated = false for (const channel of playlist.channels) { bar.tick() - if (!channel.resolution.height) { + const skipChannel = + channel.status && + ignoreStatus.map(i => i.toLowerCase()).includes(channel.status.toLowerCase()) + if (!channel.resolution.height && !skipChannel) { const CancelToken = axios.CancelToken const source = CancelToken.source() const timeout = setTimeout(() => {