From db30644f7f67758231030a38c063743f53497850 Mon Sep 17 00:00:00 2001 From: aka paul <50n50@noreply.localhost> Date: Thu, 1 Jan 2026 15:14:10 +0000 Subject: [PATCH] Update hollymoviehd/hollymoviehd.js --- hollymoviehd/hollymoviehd.js | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/hollymoviehd/hollymoviehd.js b/hollymoviehd/hollymoviehd.js index eeacd51..16c74a1 100644 --- a/hollymoviehd/hollymoviehd.js +++ b/hollymoviehd/hollymoviehd.js @@ -232,16 +232,18 @@ async function extractStreamUrl(ID) { const sources = data.sources; const hlsSource = sources.find(s => s.type === 'hls' && s.file.startsWith('/streamsvr/')); if (hlsSource) { - const streamUrl = 'https://flashstream.cc' + hlsSource.file; + const originalStreamUrl = 'https://flashstream.cc' + hlsSource.file; + const proxyHeaders = { + "Referer": "https://flashstream.cc/", + "Origin": "https://flashstream.cc/" + }; + const streamUrl = `https://proxy2.aether.mom/proxy?url=${encodeURIComponent(originalStreamUrl)}&headers=${encodeURIComponent(JSON.stringify(proxyHeaders))}`; const result = { streams: [ { title: "default", streamUrl: streamUrl, - headers: { - "Referer": "https://flashstream.cc/", - "Origin": "https://flashstream.cc/" - } + headers: {} } ], subtitle: "" @@ -305,16 +307,18 @@ async function extractStreamUrl(ID) { const sources = data.sources; const hlsSource = sources.find(s => s.type === 'hls' && s.file.startsWith('/streamsvr/')); if (hlsSource) { - const streamUrl = 'https://flashstream.cc' + hlsSource.file; + const originalStreamUrl = 'https://flashstream.cc' + hlsSource.file; + const proxyHeaders = { + "Referer": "https://flashstream.cc/", + "Origin": "https://flashstream.cc/" + }; + const streamUrl = `https://proxy2.aether.mom/proxy?url=${encodeURIComponent(originalStreamUrl)}&headers=${encodeURIComponent(JSON.stringify(proxyHeaders))}`; const result = { streams: [ { title: "default", streamUrl: streamUrl, - headers: { - "Referer": "https://flashstream.cc/", - "Origin": "https://flashstream.cc/" - } + headers: {} } ], subtitle: ""