diff --git a/.gh-pages/app.js b/.gh-pages/app.js index 21e655e8..8a75da97 100644 --- a/.gh-pages/app.js +++ b/.gh-pages/app.js @@ -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) diff --git a/.gh-pages/_items.json b/.gh-pages/items.json similarity index 100% rename from .gh-pages/_items.json rename to .gh-pages/items.json diff --git a/README.md b/README.md index df609718..f996f38d 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/scripts/update-codes.js b/scripts/update-codes.js index a920352a..d5de2442 100644 --- a/scripts/update-codes.js +++ b/scripts/update-codes.js @@ -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') }