Merge pull request #77 from iptv-org/fix-update-codes

Fix update codes
This commit is contained in:
Shadix A 2021-09-05 22:32:19 +02:00 committed by GitHub
commit 5a15473244
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 3 additions and 3 deletions

View file

@ -10,7 +10,7 @@ document.addEventListener('alpine:init', () => {
},
async init() {
this.items = await fetch('_items.json')
this.items = await fetch('items.json')
.then(response => response.json())
.catch(console.log)

View file

@ -83,7 +83,7 @@ To load a program guide, all you need to do is copy the link to one of the guide
## List of supported channels
https://iptv-org.github.io/epg
https://iptv-org.github.io/epg/index.html
## For Developers

View file

@ -46,7 +46,7 @@ async function main() {
item.channels.push(channel)
}
})
writeToFile('.gh-pages/_items.json', convertToJSON(_items))
writeToFile('.gh-pages/items.json', convertToJSON(_items))
console.log('Done')
}