From a26de1d8bd792bdee93b4205d96d0618274a52b5 Mon Sep 17 00:00:00 2001 From: momo Date: Tue, 21 Jul 2026 23:06:38 +0100 Subject: [PATCH] More generous OAuth timeout Helps with slow connections; Cloudflare checks. --- src/LaunchServer.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/LaunchServer.lua b/src/LaunchServer.lua index 428bbf92701..1775205f6a9 100644 --- a/src/LaunchServer.lua +++ b/src/LaunchServer.lua @@ -192,7 +192,7 @@ end -- attempt to establish a connection at the same time. In the future, this could be refactored to perform non-blocking -- IO, so that it can operate concurrently, but hopefully that isn't necessary. local attempt = 1 -local stopAt = os.time() + 30 +local stopAt = os.time() + 60 local errMsg local shouldRetry, code, state = true, nil, nil while (os.time() < stopAt) and shouldRetry do