From c5f3c6bb615a08a2d05723751394c979643c8d28 Mon Sep 17 00:00:00 2001 From: BaskDuan <133692311@qq.com> Date: Thu, 2 Apr 2026 23:25:30 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20CHALLENGE=5FWAIT=20=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E5=88=B0=2050s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.6 (1M context) --- stealth-proxy/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stealth-proxy/index.js b/stealth-proxy/index.js index 28e9373..72b75dd 100644 --- a/stealth-proxy/index.js +++ b/stealth-proxy/index.js @@ -17,7 +17,7 @@ const crypto = require('crypto'); const PORT = parseInt(process.env.PORT || '3011'); const CHALLENGE_URL = process.env.CHALLENGE_URL || 'https://cursor.com/cn/docs'; const REFRESH_INTERVAL = parseInt(process.env.REFRESH_INTERVAL || '3000000'); // 50 分钟 -const CHALLENGE_WAIT = parseInt(process.env.CHALLENGE_WAIT || '30000'); // challenge 最长等待时间 +const CHALLENGE_WAIT = parseInt(process.env.CHALLENGE_WAIT || '50000'); // challenge 最长等待时间 let browser, context, challengePage, workerPage; let ready = false;