From ae3c2d84d4a7d3822724e68651bc0e9c5dd58556 Mon Sep 17 00:00:00 2001 From: OfficialDakari Date: Sat, 25 Oct 2025 22:09:58 +0500 Subject: [PATCH] remove proxy usage --- lib/utils/custom_http_client.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/utils/custom_http_client.dart b/lib/utils/custom_http_client.dart index 96b17fc..c73b4a3 100644 --- a/lib/utils/custom_http_client.dart +++ b/lib/utils/custom_http_client.dart @@ -29,9 +29,9 @@ class CustomHttpClient { // Use Nekoray mixed proxy // Made it for myself, remove later final httpClient = HttpClient(context: context); - httpClient.findProxy = (uri) { - return 'PROXY localhost:2080;'; - }; + // httpClient.findProxy = (uri) { + // return 'PROXY localhost:2080;'; + // }; return httpClient; }