slower retry

This commit is contained in:
Chris Wanstrath 2025-09-28 19:21:49 -07:00
parent aea0c5558e
commit e4464f5e46

View File

@ -48,5 +48,5 @@ function retryConnection() {
} }
retries++ retries++
addErrorMessage(`!! Connection lost. Retrying...`) addErrorMessage(`!! Connection lost. Retrying...`)
setTimeout(startConnection, 1000) setTimeout(startConnection, 2000)
} }