From d3a0b44247ca1745158c16d6bb668a3ea3af3063 Mon Sep 17 00:00:00 2001 From: 2dust <31833384+2dust@users.noreply.github.com> Date: Sat, 30 Nov 2024 13:49:26 +0800 Subject: [PATCH] Bug fix https://github.com/2dust/v2rayN/issues/6182 --- v2rayN/ServiceLib/Handler/SysProxy/SysProxyHandler.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v2rayN/ServiceLib/Handler/SysProxy/SysProxyHandler.cs b/v2rayN/ServiceLib/Handler/SysProxy/SysProxyHandler.cs index 54b6ab3b..8f1a0446 100644 --- a/v2rayN/ServiceLib/Handler/SysProxy/SysProxyHandler.cs +++ b/v2rayN/ServiceLib/Handler/SysProxy/SysProxyHandler.cs @@ -66,10 +66,10 @@ private static void GetWindowsProxyString(Config config, int port, int portSocks, out string strProxy, out string strExceptions) { - strExceptions = ""; + strExceptions = $"{config.ConstItem.DefIEProxyExceptions};{config.SystemProxyItem.SystemProxyExceptions}"; if (config.SystemProxyItem.NotProxyLocalAddress) { - strExceptions = $";{config.ConstItem.DefIEProxyExceptions};{config.SystemProxyItem.SystemProxyExceptions}"; + strExceptions = $";{strExceptions}"; } strProxy = string.Empty;