Extend retries to 2000

(which is 20000 seconds after backing off)
This commit is contained in:
Marc Brooks 2025-10-02 12:00:19 -05:00
parent 70cd19ddbc
commit 0ef128e6f2
No known key found for this signature in database
GPG Key ID: 583A6AF2D6AE1DC6
1 changed files with 1 additions and 1 deletions

View File

@ -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:";