remove proxy usage

This commit is contained in:
OfficialDakari 2025-10-25 22:09:58 +05:00
parent 9d8f1e3656
commit ae3c2d84d4
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}