mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-13 10:30:03 -04:00
Added support tvg-country attribute
This commit is contained in:
parent
6ac07562ec
commit
0ee915fbbd
2 changed files with 9 additions and 2 deletions
|
@ -153,7 +153,7 @@ async function main() {
|
|||
console.log(`Updating '${country.url}'...`)
|
||||
helper.createFile(country.url, playlist.getHeader())
|
||||
channels.forEach(channel => {
|
||||
helper.appendToFile(country.url, channel.toString())
|
||||
helper.appendToFile(country.url, channel.toShortString())
|
||||
})
|
||||
}
|
||||
|
||||
|
@ -164,7 +164,7 @@ async function main() {
|
|||
console.log(`Updating 'channels/unsorted.m3u'...`)
|
||||
helper.createFile('channels/unsorted.m3u', playlist.getHeader())
|
||||
Object.values(unsorted).forEach(channel => {
|
||||
helper.appendToFile('channels/unsorted.m3u', channel.toString())
|
||||
helper.appendToFile('channels/unsorted.m3u', channel.toShortString())
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue