diff --git a/v2rayN/v2rayN/HttpProxyHandler/PACServerHandle.cs b/v2rayN/v2rayN/HttpProxyHandler/PACServerHandle.cs index 9bb4a395..1346f843 100644 --- a/v2rayN/v2rayN/HttpProxyHandler/PACServerHandle.cs +++ b/v2rayN/v2rayN/HttpProxyHandler/PACServerHandle.cs @@ -59,7 +59,7 @@ namespace v2rayN.HttpProxyHandler if (server == null) { - string prefixes = string.Format("http://{0}:{1}/pac/", "+", Global.pacPort); + string prefixes = string.Format("http://{0}:{1}/pac/", address, Global.pacPort); Utils.SaveLog("Webserver prefixes " + prefixes); HttpWebServer ws = new HttpWebServer(SendResponse, prefixes);