From bf30819a4a0feaa19faafa1f8750cf113ae6e61c Mon Sep 17 00:00:00 2001 From: 2dust <31833384+2dust@users.noreply.github.com> Date: Mon, 5 Feb 2024 20:24:30 +0800 Subject: [PATCH] Bug fix https://github.com/2dust/v2rayN/issues/4334 --- v2rayN/v2rayN/Handler/SysProxyHandle.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2rayN/v2rayN/Handler/SysProxyHandle.cs b/v2rayN/v2rayN/Handler/SysProxyHandle.cs index 4bd8fa49..a840d011 100644 --- a/v2rayN/v2rayN/Handler/SysProxyHandle.cs +++ b/v2rayN/v2rayN/Handler/SysProxyHandle.cs @@ -50,7 +50,7 @@ namespace v2rayN.Handler } if (type == ESysProxyType.ForcedChange) { - var strExceptions = $"{config.constItem.defIEProxyExceptions};{config.systemProxyExceptions}"; + var strExceptions = $";{config.constItem.defIEProxyExceptions};{config.systemProxyExceptions}"; var strProxy = string.Empty; if (Utils.IsNullOrEmpty(config.systemProxyAdvancedProtocol))