From 0ef128e6f2f813cb1715e8f716922523e7dba6e7 Mon Sep 17 00:00:00 2001 From: Marc Brooks Date: Thu, 2 Oct 2025 12:00:19 -0500 Subject: [PATCH] Extend retries to 2000 (which is 20000 seconds after backing off) --- ui/src/routes/devices.$id.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/routes/devices.$id.tsx b/ui/src/routes/devices.$id.tsx index 85e3c729..75bfdc15 100644 --- a/ui/src/routes/devices.$id.tsx +++ b/ui/src/routes/devices.$id.tsx @@ -218,7 +218,7 @@ export default function KvmIdRoute() { const ignoreOffer = useRef(false); const isSettingRemoteAnswerPending = useRef(false); const makingOffer = useRef(false); - const reconnectAttemptsRef = useRef(20); + const reconnectAttemptsRef = useRef(2000); const wsProtocol = window.location.protocol === "https:" ? "wss:" : "ws:";