From 426255f5eef851d2f6a9604bc7bc4b9ecc722104 Mon Sep 17 00:00:00 2001 From: SunBK201 Date: Sun, 7 Dec 2025 15:37:58 +0800 Subject: [PATCH] fix: increase XMLHttpRequest timeout to 5000ms for status updates --- openwrt/files/luci/view/ua3f/status.htm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openwrt/files/luci/view/ua3f/status.htm b/openwrt/files/luci/view/ua3f/status.htm index d278259..8a03a96 100644 --- a/openwrt/files/luci/view/ua3f/status.htm +++ b/openwrt/files/luci/view/ua3f/status.htm @@ -17,7 +17,7 @@ function updateStatus() { var xhr = new XMLHttpRequest(); xhr.open('GET', statusUrl, true); - xhr.timeout = 4000; + xhr.timeout = 5000; xhr.onreadystatechange = function () { if (xhr.readyState === 4) {