Increase the timeout threshold for loading profiles. (#13661)

This commit is contained in:
SoftFever
2026-05-14 17:39:54 +08:00
committed by GitHub
parent 1c21402981
commit 85d8e04fc8

View File

@@ -7,8 +7,9 @@ function OnInit()
TargetPage=GetQueryString("target");
// Fallback timeout in case the C++ -> JS signal fails (e.g., WebKit issues)
setTimeout("JumpToTarget()",20*1000);
// Orca: fallback timeout in case the C++ -> JS signal fails (e.g., WebKit issues).
// Jump to the target page after 3 minutes so slow computers don't get stuck on a partially loaded page.
setTimeout("JumpToTarget()",180*1000);
}
function HandleStudio( pVal )