Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormhsanaei <ho3ein.sanaei@gmail.com>2025-07-28 14:45:47 +0300
committermhsanaei <ho3ein.sanaei@gmail.com>2025-07-28 14:45:47 +0300
commit6e1b94908185bece6423328ac16eb65c49146126 (patch)
treedeb3542c20d8bfedd71e4703557aebb9ff876b0b /web/assets/js
parent0ad708b1b633d7f7f08c18f9ed358809c9faa8b7 (diff)
Reality: min & max client ver
Diffstat (limited to 'web/assets/js')
-rw-r--r--web/assets/js/model/inbound.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/web/assets/js/model/inbound.js b/web/assets/js/model/inbound.js
index 56c20b69..141a1fa4 100644
--- a/web/assets/js/model/inbound.js
+++ b/web/assets/js/model/inbound.js
@@ -728,8 +728,8 @@ class RealityStreamSettings extends XrayCommonClass {
dest = 'yahoo.com:443',
serverNames = 'yahoo.com,www.yahoo.com',
privateKey = '',
- minClient = '',
- maxClient = '',
+ minClientVer = '',
+ maxClientVer = '',
maxTimediff = 0,
shortIds = RandomUtil.randomShortIds(),
mldsa65Seed = '',
@@ -741,8 +741,8 @@ class RealityStreamSettings extends XrayCommonClass {
this.dest = dest;
this.serverNames = Array.isArray(serverNames) ? serverNames.join(",") : serverNames;
this.privateKey = privateKey;
- this.minClient = minClient;
- this.maxClient = maxClient;
+ this.minClientVer = minClientVer;
+ this.maxClientVer = maxClientVer;
this.maxTimediff = maxTimediff;
this.shortIds = Array.isArray(shortIds) ? shortIds.join(",") : shortIds;
this.mldsa65Seed = mldsa65Seed;
@@ -766,8 +766,8 @@ class RealityStreamSettings extends XrayCommonClass {
json.dest,
json.serverNames,
json.privateKey,
- json.minClient,
- json.maxClient,
+ json.minClientVer,
+ json.maxClientVer,
json.maxTimediff,
json.shortIds,
json.mldsa65Seed,
@@ -782,8 +782,8 @@ class RealityStreamSettings extends XrayCommonClass {
dest: this.dest,
serverNames: this.serverNames.split(","),
privateKey: this.privateKey,
- minClient: this.minClient,
- maxClient: this.maxClient,
+ minClientVer: this.minClientVer,
+ maxClientVer: this.maxClientVer,
maxTimediff: this.maxTimediff,
shortIds: this.shortIds.split(","),
mldsa65Seed: this.mldsa65Seed,