From ad9134bc1add038cf65e1e94def94bddceca989e Mon Sep 17 00:00:00 2001 From: MHSanaei Date: Tue, 13 Jun 2023 17:26:50 +0330 Subject: removed - alterId https://github.com/XTLS/Xray-core/pull/2199 https://github.com/XTLS/Xray-core/commit/9112cfd39c2105d5b513275f9659b26e92fa7b67 --- web/assets/js/model/xray.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'web/assets') diff --git a/web/assets/js/model/xray.js b/web/assets/js/model/xray.js index 0e737bb0..12857d64 100644 --- a/web/assets/js/model/xray.js +++ b/web/assets/js/model/xray.js @@ -1222,7 +1222,6 @@ class Inbound extends XrayCommonClass { add: address, port: this.port, id: this.settings.vmesses[clientIndex].id, - aid: this.settings.vmesses[clientIndex].alterId, net: this.stream.network, type: 'none', tls: this.stream.security, @@ -1668,10 +1667,9 @@ Inbound.VmessSettings = class extends Inbound.Settings { } }; Inbound.VmessSettings.Vmess = class extends XrayCommonClass { - constructor(id=RandomUtil.randomUUID(), alterId=0, email=RandomUtil.randomLowerAndNum(8),limitIp=0, totalGB=0, expiryTime=0, enable=true, tgId='', subId=RandomUtil.randomLowerAndNum(16)) { + constructor(id=RandomUtil.randomUUID(), email=RandomUtil.randomLowerAndNum(8),limitIp=0, totalGB=0, expiryTime=0, enable=true, tgId='', subId=RandomUtil.randomLowerAndNum(16)) { super(); this.id = id; - this.alterId = alterId; this.email = email; this.limitIp = limitIp; this.totalGB = totalGB; @@ -1684,7 +1682,6 @@ Inbound.VmessSettings.Vmess = class extends XrayCommonClass { static fromJson(json={}) { return new Inbound.VmessSettings.Vmess( json.id, - json.alterId, json.email, json.limitIp, json.totalGB, -- cgit v1.2.3