diff --git a/index.php b/index.php index 2b0b06b..32e179f 100644 --- a/index.php +++ b/index.php @@ -6448,10 +6448,10 @@ $projectDescription = $_SERVER['PROJECT_DESCRIPTION'] ?? 'Accounting System'; const decoder = new TextDecoder('utf-8'); let readCount = 0; - while (readCount < 30) { + while (readCount < 100) { const { value, done } = await Promise.race([ reader.read(), - new Promise((_, reject) => setTimeout(() => reject(new Error('Timeout')), 1000)) + new Promise((_, reject) => setTimeout(() => reject(new Error('Timeout')), 500)) ]).catch(e => ({ done: true, value: null })); if (done) break;