From ab4436d4cb6271a76d8b8f7e94727b4f04a8ed5e Mon Sep 17 00:00:00 2001 From: mmorrison Date: Sun, 11 Nov 2018 06:13:31 -0600 Subject: [PATCH] Increase default timeout to 2000ms to align with steam server browser and allow for better compatibility with bad connections. --- protocols/core.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protocols/core.js b/protocols/core.js index 06e16fc..ca81b35 100644 --- a/protocols/core.js +++ b/protocols/core.js @@ -9,7 +9,7 @@ class Core extends EventEmitter { constructor() { super(); this.options = { - socketTimeout: 1000, + socketTimeout: 2000, attemptTimeout: 10000, maxAttempts: 1 };