Change V2rayConfig.AllowInsecure default to false

This commit is contained in:
ChsBuffer
2021-02-22 23:26:38 +08:00
parent 890ebeb592
commit 96dd2e7bf2

View File

@@ -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();
}
}
}
}