mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
debug
This commit is contained in:
parent
cbdbd95e81
commit
279db4b4cb
1 changed files with 8 additions and 8 deletions
|
@ -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, {
|
||||||
|
|
Loading…
Add table
Reference in a new issue