Update ashi/ashi.js

This commit is contained in:
aka paul
2026-01-29 14:51:33 +00:00
parent 243bf022b2
commit 10d6691a07
+2 -2
View File
@@ -528,7 +528,7 @@ async function extractStreamUrl(url) {
const finalResponse = await fetchv2(
"https://enc-dec.app/api/dec-mega",
{},
{ "Content-Type": "application/json" },
"POST",
JSON.stringify(postData)
);
@@ -612,7 +612,7 @@ async function extractStreamUrl(url) {
}
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);