diff --git a/src/app/api/danmaku/comment/route.ts b/src/app/api/danmaku/comment/route.ts index 0f8d05e..c56059a 100644 --- a/src/app/api/danmaku/comment/route.ts +++ b/src/app/api/danmaku/comment/route.ts @@ -70,7 +70,7 @@ export async function GET(request: NextRequest) { // 添加超时控制 const controller = new AbortController(); - const timeoutId = setTimeout(() => controller.abort(), 10000); // 10秒超时 + const timeoutId = setTimeout(() => controller.abort(), 120000); // 2分钟超时 try { const response = await fetch(apiUrl, {