diff --git a/scripts/update-readme.js b/scripts/update-readme.js index 697b974d82..ccca77f159 100644 --- a/scripts/update-readme.js +++ b/scripts/update-readme.js @@ -34,19 +34,19 @@ function parseIndex() { for(let item of playlist.items) { - // country + // countries if(countries[countryCode]) { countries[countryCode].channels++ } else { countries[countryCode] = { country: countryName, - channels: playlist.items.length, + channels: 1, playlist: `https://iptv-org.github.io/iptv/countries/${countryCode}.m3u`, epg: countryEpg } } - // language + // languages const languageName = item.tvg.language || 'Undefined' const languageCode = helper.getISO6391Code(languageName) || 'undefined' if(languages[languageCode]) { @@ -59,7 +59,7 @@ function parseIndex() { } } - // category + // categories const categoryName = item.group.title || 'Other' const categoryCode = categoryName.toLowerCase() if(categories[categoryCode]) {