From 49355da702f4a45db09700e9008aa1b6644f0aab Mon Sep 17 00:00:00 2001 From: Splash Date: Fri, 27 Mar 2020 15:29:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E2=80=9C=E5=85=8B=E9=9A=86?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E5=99=A8=E2=80=9D=E6=9C=AA=E5=B8=A6=E5=85=A5?= =?UTF-8?q?allowInsecure=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- v2rayN/v2rayN/Handler/ConfigHandler.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/v2rayN/v2rayN/Handler/ConfigHandler.cs b/v2rayN/v2rayN/Handler/ConfigHandler.cs index eb396e72..36abf07a 100644 --- a/v2rayN/v2rayN/Handler/ConfigHandler.cs +++ b/v2rayN/v2rayN/Handler/ConfigHandler.cs @@ -276,18 +276,19 @@ namespace v2rayN.Handler VmessItem vmessItem = new VmessItem { configVersion = config.vmess[index].configVersion, - configType = config.vmess[index].configType, address = config.vmess[index].address, port = config.vmess[index].port, id = config.vmess[index].id, alterId = config.vmess[index].alterId, security = config.vmess[index].security, network = config.vmess[index].network, + remarks = string.Format("{0}-clone", config.vmess[index].remarks), headerType = config.vmess[index].headerType, requestHost = config.vmess[index].requestHost, path = config.vmess[index].path, streamSecurity = config.vmess[index].streamSecurity, - remarks = string.Format("{0}-clone", config.vmess[index].remarks) + allowInsecure = config.vmess[index].allowInsecure, + configType = config.vmess[index].configType }; config.vmess.Insert(index + 1, vmessItem); // 插入到下一项