From 96dd2e7bf2328d433f64d6a66a5e0761a857f113 Mon Sep 17 00:00:00 2001 From: ChsBuffer <33744752+chsbuffer@users.noreply.github.com> Date: Mon, 22 Feb 2021 23:26:38 +0800 Subject: [PATCH] Change V2rayConfig.AllowInsecure default to false --- Netch/Models/Setting.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Netch/Models/Setting.cs b/Netch/Models/Setting.cs index ca8bd167..9fba536b 100644 --- a/Netch/Models/Setting.cs +++ b/Netch/Models/Setting.cs @@ -61,7 +61,7 @@ namespace Netch.Models public class V2rayConfig { - public bool AllowInsecure = true; + public bool AllowInsecure = false; public KcpConfig KcpConfig = new(); @@ -300,4 +300,4 @@ namespace Netch.Models return (Setting) MemberwiseClone(); } } -} \ No newline at end of file +}