From 3431383a5adecfba47f1a18ccb74a77764d55224 Mon Sep 17 00:00:00 2001 From: aka paul <50n50@noreply.localhost> Date: Thu, 6 Nov 2025 20:28:20 +0000 Subject: [PATCH] Update iptv-org/iptv-org.js --- iptv-org/iptv-org.js | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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/"; }