Update PACServerHandle.cs

2dust 2019-09-20 13:18:43 +08:00
parent 1dc1d4dccd
commit 19ad24c2d5
1 changed files with 5 additions and 1 deletions

View File

@ -21,7 +21,11 @@ namespace v2rayN.HttpProxyHandler
public static void Init(Config config)
{
if (InitServer("127.0.0.1"))
if (InitServer("*"))
{
pacPort = Global.pacPort;
}
else if (InitServer("127.0.0.1"))
{
pacPort = Global.pacPort;
}