Update generate.js

Fixes #2750
This commit is contained in:
freearhey 2021-05-10 14:39:01 +03:00
parent 27c60cde2f
commit dec8e25abb
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,6 @@ function generateCountries() {
const outputDir = `${ROOT_DIR}/countries`
utils.createDir(outputDir)
const buffer = []
for (const country of [...db.countries.all(), { code: 'undefined' }]) {
const filename = `${outputDir}/${country.code}.m3u`
utils.createFile(filename, '#EXTM3U\n')
@ -196,6 +195,7 @@ function generateCountries() {
const sfwFilename = `${outputDir}/${country.code}.sfw.m3u`
utils.createFile(sfwFilename, '#EXTM3U\n')
const buffer = []
const channels = db.channels.sortBy(['name', 'url']).forCountry(country).get()
for (const channel of channels) {
const info = channel.getInfo()