|
@@ -53,8 +53,8 @@ class CoreController extends GetxController {
|
|
|
final socksPort = mixedPort ?? config.value.socksPort;
|
|
|
return SystemProxyConfig(
|
|
|
http: httpPort == 0 ? null : '127.0.0.1:$httpPort',
|
|
|
- //https: httpsPort == 0 ? null : '127.0.0.1:$httpsPort',
|
|
|
- // socks: socksPort == 0 ? null : '127.0.0.1:$socksPort',
|
|
|
+ https: httpsPort == 0 ? null : '127.0.0.1:$httpsPort',
|
|
|
+ socks: socksPort == 0 ? null : '127.0.0.1:$socksPort',
|
|
|
);
|
|
|
}
|
|
|
|