diff --git a/.readme/_categories.md b/.readme/_categories.md index 5b651b79ef..3303576825 100644 --- a/.readme/_categories.md +++ b/.readme/_categories.md @@ -27,6 +27,6 @@ Travel7https://iptv-org.github.io/iptv/categories/travel.m3u Weather4https://iptv-org.github.io/iptv/categories/weather.m3u XXX68https://iptv-org.github.io/iptv/categories/xxx.m3u - Other3472https://iptv-org.github.io/iptv/categories/other.m3u + Other3471https://iptv-org.github.io/iptv/categories/other.m3u \ No newline at end of file diff --git a/.readme/_countries.md b/.readme/_countries.md index 5e2df90703..048c2313a2 100644 --- a/.readme/_countries.md +++ b/.readme/_countries.md @@ -144,7 +144,7 @@ πŸ‡ΊπŸ‡¦ Ukraine132https://iptv-org.github.io/iptv/countries/ua.m3uhttps://iptvx.one/epg/epg.xml.gz πŸ‡¦πŸ‡ͺ United Arab Emirates54https://iptv-org.github.io/iptv/countries/ae.m3uhttps://raw.githubusercontent.com/Fazzani/grab/master/merge.zip πŸ‡¬πŸ‡§ United Kingdom64https://iptv-org.github.io/iptv/countries/uk.m3u - πŸ‡ΊπŸ‡Έ United States499https://iptv-org.github.io/iptv/countries/us.m3u + πŸ‡ΊπŸ‡Έ United States498https://iptv-org.github.io/iptv/countries/us.m3u πŸ‡ΊπŸ‡Ώ Uzbekistan1https://iptv-org.github.io/iptv/countries/uz.m3u πŸ‡»πŸ‡ͺ Venezuela5https://iptv-org.github.io/iptv/countries/ve.m3u πŸ‡»πŸ‡³ Vietnam30https://iptv-org.github.io/iptv/countries/vn.m3u diff --git a/.readme/_languages.md b/.readme/_languages.md index def0e5014a..acf02fdea1 100644 --- a/.readme/_languages.md +++ b/.readme/_languages.md @@ -19,7 +19,7 @@ Czech18https://iptv-org.github.io/iptv/languages/ces.m3u Danish10https://iptv-org.github.io/iptv/languages/dan.m3u Dutch56https://iptv-org.github.io/iptv/languages/nld.m3u - English697https://iptv-org.github.io/iptv/languages/eng.m3u + English696https://iptv-org.github.io/iptv/languages/eng.m3u Estonian3https://iptv-org.github.io/iptv/languages/est.m3u Faroese1https://iptv-org.github.io/iptv/languages/fao.m3u Finnish3https://iptv-org.github.io/iptv/languages/fin.m3u diff --git a/README.md b/README.md index 5c00a3c37e..7d061ee152 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Or select one of the playlists from the list below. Travel7https://iptv-org.github.io/iptv/categories/travel.m3u Weather4https://iptv-org.github.io/iptv/categories/weather.m3u XXX68https://iptv-org.github.io/iptv/categories/xxx.m3u - Other3472https://iptv-org.github.io/iptv/categories/other.m3u + Other3471https://iptv-org.github.io/iptv/categories/other.m3u @@ -78,7 +78,7 @@ Or select one of the playlists from the list below. Czech18https://iptv-org.github.io/iptv/languages/ces.m3u Danish10https://iptv-org.github.io/iptv/languages/dan.m3u Dutch56https://iptv-org.github.io/iptv/languages/nld.m3u - English697https://iptv-org.github.io/iptv/languages/eng.m3u + English696https://iptv-org.github.io/iptv/languages/eng.m3u Estonian3https://iptv-org.github.io/iptv/languages/est.m3u Faroese1https://iptv-org.github.io/iptv/languages/fao.m3u Finnish3https://iptv-org.github.io/iptv/languages/fin.m3u @@ -287,7 +287,7 @@ Or select one of the playlists from the list below. πŸ‡ΊπŸ‡¦ Ukraine132https://iptv-org.github.io/iptv/countries/ua.m3uhttps://iptvx.one/epg/epg.xml.gz πŸ‡¦πŸ‡ͺ United Arab Emirates54https://iptv-org.github.io/iptv/countries/ae.m3uhttps://raw.githubusercontent.com/Fazzani/grab/master/merge.zip πŸ‡¬πŸ‡§ United Kingdom64https://iptv-org.github.io/iptv/countries/uk.m3u - πŸ‡ΊπŸ‡Έ United States499https://iptv-org.github.io/iptv/countries/us.m3u + πŸ‡ΊπŸ‡Έ United States498https://iptv-org.github.io/iptv/countries/us.m3u πŸ‡ΊπŸ‡Ώ Uzbekistan1https://iptv-org.github.io/iptv/countries/uz.m3u πŸ‡»πŸ‡ͺ Venezuela5https://iptv-org.github.io/iptv/countries/ve.m3u πŸ‡»πŸ‡³ Vietnam30https://iptv-org.github.io/iptv/countries/vn.m3u diff --git a/scripts/format.js b/scripts/format.js index b686423df3..f888868e3e 100644 --- a/scripts/format.js +++ b/scripts/format.js @@ -2,6 +2,7 @@ const { program } = require('commander') const helper = require('./helper') const axios = require('axios') const ProgressBar = require('progress') +const https = require('https') program .version('1.0.0', '-v, --version') @@ -19,7 +20,10 @@ const config = program.opts() const instance = axios.create({ timeout: config.timeout, - maxContentLength: 5000 + maxContentLength: 5000, + httpsAgent: new https.Agent({ + rejectUnauthorized: false + }) }) let globalBuffer = []