From ae92a7a4242ffacf7ba2fd207bb5d9a729c51ccd Mon Sep 17 00:00:00 2001 From: Radiquum Date: Sat, 22 Mar 2025 01:56:03 +0500 Subject: [PATCH] fix: search --- app/api/search/route.ts | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/app/api/search/route.ts b/app/api/search/route.ts index ce7f73d..d07dea9 100644 --- a/app/api/search/route.ts +++ b/app/api/search/route.ts @@ -49,16 +49,26 @@ export async function GET(request: NextRequest) { if (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(), - JSON.stringify(data), + JSON.stringify(body), true ); - if (!response) { - return NextResponse.json({ message: "Bad request" }, { status: 400 }); + if (error) { + 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", + }, + }); }