diff options
| author | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-12-18 01:25:54 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-12-18 01:25:54 +0300 |
| commit | 73e90e0eaa179e1f9e2ed1b0d697350f5a542880 (patch) | |
| tree | cd804d77a362f5a17d6b025f7f2539d874883a27 | |
| parent | 44ef1ac9a68b43d9832be97293b3ee77ace6a173 (diff) | |
TLS, REALITY : fingerprint set default to chrome
| -rw-r--r-- | web/assets/js/model/inbound.js | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/web/assets/js/model/inbound.js b/web/assets/js/model/inbound.js index 3a689bff..44c8d767 100644 --- a/web/assets/js/model/inbound.js +++ b/web/assets/js/model/inbound.js @@ -689,7 +689,10 @@ TlsStreamSettings.Cert = class extends XrayCommonClass { }; TlsStreamSettings.Settings = class extends XrayCommonClass { - constructor(allowInsecure = false, fingerprint = '') { + constructor( + allowInsecure = false, + fingerprint = UTLS_FINGERPRINT.UTLS_CHROME, + ) { super(); this.allowInsecure = allowInsecure; this.fingerprint = fingerprint; @@ -778,7 +781,7 @@ class RealityStreamSettings extends XrayCommonClass { RealityStreamSettings.Settings = class extends XrayCommonClass { constructor( publicKey = '', - fingerprint = UTLS_FINGERPRINT.UTLS_RANDOM, + fingerprint = UTLS_FINGERPRINT.UTLS_CHROME, serverName = '', spiderX = '/' ) { |
