mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
update trojan
This commit is contained in:
parent
4c73d55342
commit
2d67446ce3
@ -42,7 +42,7 @@ class Clash
|
||||
$array['port'] = $server->port;
|
||||
$array['password'] = $password;
|
||||
$array['sni'] = $server->server_name;
|
||||
$array['skip-cert-verify'] = $server->allow_insecure ? true : false;
|
||||
$array['skip-cert-verify'] = (string)($server->allow_insecure ? true : false);
|
||||
return $array;
|
||||
}
|
||||
}
|
||||
|
@ -33,7 +33,7 @@ class QuantumultX
|
||||
|
||||
public static function buildTrojan($password, $server)
|
||||
{
|
||||
$tlsVerification = $server->allow_insecure ? true : false;
|
||||
$tlsVerification = (string)($server->allow_insecure ? true : false);
|
||||
$config = [
|
||||
"trojan={$server->host}:{$server->port}",
|
||||
"password={$password}",
|
||||
|
Loading…
Reference in New Issue
Block a user