This commit is contained in:
Kentai Radiquum 2025-03-16 03:26:51 +05:00
parent cbdbd95e81
commit 279db4b4cb
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -71,8 +71,8 @@ export default async function middleware(
const videoRe = /\/v\/.*?\.mp4/; const videoRe = /\/v\/.*?\.mp4/;
const video = videoRe.exec(pageData); const video = videoRe.exec(pageData);
if (video.length == 0) { if (!video || video.length == 0) {
return new Response(JSON.stringify({ message: "Error Fetching Data" }), { return new Response(JSON.stringify({ message: "Sibnet: Video not found" }), {
status: 500, status: 500,
headers: { headers: {
"Content-Type": "application/json", "Content-Type": "application/json",
@ -83,8 +83,8 @@ export default async function middleware(
const posterRe = /\/upload\/cover\/.*?\.jpg/; const posterRe = /\/upload\/cover\/.*?\.jpg/;
const posterUrl = posterRe.exec(pageData); const posterUrl = posterRe.exec(pageData);
if (posterUrl.length == 0) { if (!posterUrl || posterUrl.length == 0) {
return new Response(JSON.stringify({ message: "Error Fetching Data" }), { return new Response(JSON.stringify({ message: "Sibnet: Poster not found" }), {
status: 500, status: 500,
headers: { headers: {
"Content-Type": "application/json", "Content-Type": "application/json",
@ -186,12 +186,12 @@ export default async function middleware(
formData.append(key as any, value as any); formData.append(key as any, value as any);
} }
console.log("get JSON:", params); const response = await fetch(`https://anix-c.wah.su/https://${path}`, {
console.log("send FORM:", formData);
const response = await fetch(`https://${path}`, {
method: "POST", method: "POST",
body: formData, body: formData,
headers: {
origin: "anix.wah.su"
}
}).catch((err) => { }).catch((err) => {
console.log(err); console.log(err);
return new Response(err.message, { return new Response(err.message, {