Fix allowInsecure

This commit is contained in:
Julian Liu 2020-12-11 01:09:49 +08:00 committed by GitHub
parent be1d22b423
commit f3ef9e457e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,9 +46,9 @@ class QuantumultX
if ($server['tlsSettings']) {
$tlsSettings = json_decode($server['tlsSettings'], true);
if (isset($tlsSettings['allowInsecure']) && !empty($tlsSettings['allowInsecure']))
array_push($config, 'tls-verification=' . $tlsSettings['allowInsecure'] ? 'false' : 'true');
array_push($config, 'tls-verification=' . ($tlsSettings['allowInsecure'] ? 'false' : 'true'));
if (isset($tlsSettings['serverName']) && !empty($tlsSettings['serverName']))
array_push($config, "sni={$tlsSettings['serverName']}");
array_push($config, "tls-host={$tlsSettings['serverName']}");
}
}
if ($server['network'] === 'ws') {