Skip to content

Commit 73e90e0

Browse files
committed
TLS, REALITY : fingerprint set default to chrome
1 parent 44ef1ac commit 73e90e0

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

web/assets/js/model/inbound.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,10 @@ TlsStreamSettings.Cert = class extends XrayCommonClass {
689689
};
690690

691691
TlsStreamSettings.Settings = class extends XrayCommonClass {
692-
constructor(allowInsecure = false, fingerprint = '') {
692+
constructor(
693+
allowInsecure = false,
694+
fingerprint = UTLS_FINGERPRINT.UTLS_CHROME,
695+
) {
693696
super();
694697
this.allowInsecure = allowInsecure;
695698
this.fingerprint = fingerprint;
@@ -778,7 +781,7 @@ class RealityStreamSettings extends XrayCommonClass {
778781
RealityStreamSettings.Settings = class extends XrayCommonClass {
779782
constructor(
780783
publicKey = '',
781-
fingerprint = UTLS_FINGERPRINT.UTLS_RANDOM,
784+
fingerprint = UTLS_FINGERPRINT.UTLS_CHROME,
782785
serverName = '',
783786
spiderX = '/'
784787
) {

0 commit comments

Comments
 (0)