mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
fix: search
This commit is contained in:
parent
9c26654ca9
commit
ae92a7a424
1 changed files with 16 additions and 6 deletions
|
@ -49,16 +49,26 @@ export async function GET(request: NextRequest) {
|
||||||
if (token) {
|
if (token) {
|
||||||
url.searchParams.set("token", token);
|
url.searchParams.set("token", token);
|
||||||
}
|
}
|
||||||
const data = { query, searchBy };
|
const body = { query, searchBy };
|
||||||
|
|
||||||
const response = await fetchDataViaPost(
|
const { data, error } = await fetchDataViaPost(
|
||||||
url.toString(),
|
url.toString(),
|
||||||
JSON.stringify(data),
|
JSON.stringify(body),
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
if (!response) {
|
if (error) {
|
||||||
return NextResponse.json({ message: "Bad request" }, { status: 400 });
|
return new Response(JSON.stringify(error), {
|
||||||
|
status: 500,
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
return NextResponse.json(response);
|
return new Response(JSON.stringify(data), {
|
||||||
|
status: 200,
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue