From a34fcc94787846d03d5140d96d3aaab5b8603788 Mon Sep 17 00:00:00 2001 From: pypy Date: Thu, 21 Jan 2021 11:24:06 +0900 Subject: [PATCH] increase connection limit --- WebApi.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/WebApi.cs b/WebApi.cs index efc688a5..6aca3039 100644 --- a/WebApi.cs +++ b/WebApi.cs @@ -15,6 +15,7 @@ namespace VRCX static WebApi() { Instance = new WebApi(); + ServicePointManager.DefaultConnectionLimit = 10; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; }