From aa5f00e67b174e47b2a47b1639b6e337c769c6d6 Mon Sep 17 00:00:00 2001 From: Undefined Date: Thu, 19 Sep 2019 15:41:30 +0800 Subject: [PATCH] fix PAC --- v2rayN/v2rayN/HttpProxyHandler/PACServerHandle.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);