diff --git a/web/assets/js/model/inbound.js b/web/assets/js/model/inbound.js index 141a1fa4..6c299047 100644 --- a/web/assets/js/model/inbound.js +++ b/web/assets/js/model/inbound.js @@ -725,8 +725,8 @@ class RealityStreamSettings extends XrayCommonClass { constructor( show = false, xver = 0, - dest = 'yahoo.com:443', - serverNames = 'yahoo.com,www.yahoo.com', + dest = 'google.com:443', + serverNames = 'google.com,www.google.com', privateKey = '', minClientVer = '', maxClientVer = '', @@ -1385,6 +1385,7 @@ class Inbound extends XrayCommonClass { params.set("security", "reality"); params.set("pbk", this.stream.reality.settings.publicKey); params.set("fp", this.stream.reality.settings.fingerprint); + params.set("pqv", this.stream.reality.settings.mldsa65Verify); if (!ObjectUtil.isArrEmpty(this.stream.reality.serverNames)) { params.set("sni", this.stream.reality.serverNames.split(",")[0]); } @@ -1559,6 +1560,7 @@ class Inbound extends XrayCommonClass { params.set("security", "reality"); params.set("pbk", this.stream.reality.settings.publicKey); params.set("fp", this.stream.reality.settings.fingerprint); + params.set("pqv", this.stream.reality.settings.mldsa65Verify); if (!ObjectUtil.isArrEmpty(this.stream.reality.serverNames)) { params.set("sni", this.stream.reality.serverNames.split(",")[0]); }