We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6dbfb3 commit f1b540fCopy full SHA for f1b540f
src/app/api/proxy/route.ts
@@ -30,7 +30,6 @@ export async function GET(req: NextRequest) {
30
const file = await downloadFile({ url, maxBytes, timeoutInSeconds })
31
return new NextResponse(file, { status: 200 })
32
} catch (error) {
33
- console.log(error)
34
if (error instanceof Error == false) {
35
return makeAPIErrorResponse(500, "An unknown error occurred.")
36
}
0 commit comments