diff --git a/iptv-org/iptv-org.js b/iptv-org/iptv-org.js index c16bdfc..6f3c08a 100644 --- a/iptv-org/iptv-org.js +++ b/iptv-org/iptv-org.js @@ -78,7 +78,16 @@ async function extractEpisodes(url) { async function extractStreamUrl(url) { try { - return url; + return JSON.stringify({ + "streams": [ + { + "title": "Server 1", + "streamUrl": url, + "headers": {} + } + ], + "subtitle": "" + }); } catch (err) { return "https://error.org/"; }