From 6ab8e5925ed136dbf51eff15975b09ebeb6b67f2 Mon Sep 17 00:00:00 2001 From: bggRGjQaUbCoE Date: Tue, 25 Mar 2025 15:36:52 +0800 Subject: [PATCH] mod: remove maxConnectionsPerHost Signed-off-by: bggRGjQaUbCoE --- lib/main.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/main.dart b/lib/main.dart index b495361d9..9d217506f 100644 --- a/lib/main.dart +++ b/lib/main.dart @@ -235,7 +235,7 @@ class _CustomHttpOverrides extends HttpOverrides { @override HttpClient createHttpClient(SecurityContext? context) { final client = super.createHttpClient(context) - ..maxConnectionsPerHost = 32 + // ..maxConnectionsPerHost = 32 ..idleTimeout = const Duration(seconds: 15); if (badCertificateCallback) { client.badCertificateCallback =