Update util.js

Added skipPlaylist() function
pull/177/head
freearhey 6 years ago
parent 6f484406fc
commit b648f5fce8

@ -217,6 +217,14 @@ function validateUrl(channelUrl) {
return blacklist.indexOf(host) === -1
}
function skipPlaylist(filename) {
let test_country = process.env.npm_config_country
if (test_country && filename !== 'channels/' + test_country + '.m3u') {
return true;
}
return false;
}
module.exports = {
parsePlaylist,
sortByTitle,
@ -229,5 +237,6 @@ module.exports = {
addToCache,
checkCache,
clearCache,
validateUrl
validateUrl,
skipPlaylist
}
Loading…
Cancel
Save