We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44ef1ac commit 73e90e0Copy full SHA for 73e90e0
web/assets/js/model/inbound.js
@@ -689,7 +689,10 @@ TlsStreamSettings.Cert = class extends XrayCommonClass {
689
};
690
691
TlsStreamSettings.Settings = class extends XrayCommonClass {
692
- constructor(allowInsecure = false, fingerprint = '') {
+ constructor(
693
+ allowInsecure = false,
694
+ fingerprint = UTLS_FINGERPRINT.UTLS_CHROME,
695
+ ) {
696
super();
697
this.allowInsecure = allowInsecure;
698
this.fingerprint = fingerprint;
@@ -778,7 +781,7 @@ class RealityStreamSettings extends XrayCommonClass {
778
781
RealityStreamSettings.Settings = class extends XrayCommonClass {
779
782
constructor(
780
783
publicKey = '',
- fingerprint = UTLS_FINGERPRINT.UTLS_RANDOM,
784
785
serverName = '',
786
spiderX = '/'
787
) {
0 commit comments