From 10d6691a070855c0be2681264a14a63e8ab5b61f Mon Sep 17 00:00:00 2001 From: aka paul <50n50@noreply.localhost> Date: Thu, 29 Jan 2026 14:51:33 +0000 Subject: [PATCH] Update ashi/ashi.js --- ashi/ashi.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ashi/ashi.js b/ashi/ashi.js index 0ad735d..07c2528 100644 --- a/ashi/ashi.js +++ b/ashi/ashi.js @@ -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);