Fix (#8244)
This commit is contained in:
@@ -268,10 +268,13 @@ public partial class CoreConfigSingboxService
|
|||||||
.Select(s => s + "\n-----END CERTIFICATE-----")
|
.Select(s => s + "\n-----END CERTIFICATE-----")
|
||||||
.Select(s => s.Replace("\r\n", "\n"))
|
.Select(s => s.Replace("\r\n", "\n"))
|
||||||
.ToList() ?? new();
|
.ToList() ?? new();
|
||||||
tls.certificate = certs.Count > 0 ? certs : null;
|
if (certs.Count > 0)
|
||||||
tls.insecure = false;
|
{
|
||||||
|
tls.certificate = certs;
|
||||||
|
tls.insecure = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else if (node.StreamSecurity == Global.StreamSecurityReality)
|
||||||
{
|
{
|
||||||
tls.reality = new Reality4Sbox()
|
tls.reality = new Reality4Sbox()
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user