1
0
forked from 50n50/sources

Update 1movies/1movies.js

This commit is contained in:
aka paul
2026-01-29 14:49:27 +00:00
parent 3c48260b8d
commit aa11a6811d
+2 -2
View File
@@ -176,7 +176,7 @@ async function extractStreamUrl(url) {
} }
const decryptPromises = [ const decryptPromises = [
fetchv2("https://enc-dec.app/api/dec-movies-flix", {}, "POST", JSON.stringify({ text: streamData.result })) fetchv2("https://enc-dec.app/api/dec-movies-flix", { "Content-Type": "application/json" }, "POST", JSON.stringify({ text: streamData.result }))
]; ];
const decryptResponses = await Promise.all(decryptPromises); const decryptResponses = await Promise.all(decryptPromises);
@@ -225,7 +225,7 @@ async function extractStreamUrl(url) {
}; };
const finalPromises = [ const finalPromises = [
fetchv2("https://enc-dec.app/api/dec-mega", {}, "POST", JSON.stringify(postData)) fetchv2("https://enc-dec.app/api/dec-mega", { "Content-Type": "application/json" }, "POST", JSON.stringify(postData))
]; ];
const finalResponses = await Promise.all(finalPromises); const finalResponses = await Promise.all(finalPromises);