diff --git a/web/assets/js/model/inbound.js b/web/assets/js/model/inbound.js index 074670a9..7fcc9ed5 100644 --- a/web/assets/js/model/inbound.js +++ b/web/assets/js/model/inbound.js @@ -2543,7 +2543,6 @@ Inbound.VLESSSettings = class extends Inbound.Settings { decryption = "none", encryption = "none", fallbacks = [], - selectedAuth = undefined, testseed = [], ) { super(protocol); @@ -2551,7 +2550,6 @@ Inbound.VLESSSettings = class extends Inbound.Settings { this.decryption = decryption; this.encryption = encryption; this.fallbacks = fallbacks; - this.selectedAuth = selectedAuth; this.testseed = testseed; } @@ -2587,7 +2585,6 @@ Inbound.VLESSSettings = class extends Inbound.Settings { json.decryption, json.encryption, Inbound.VLESSSettings.Fallback.fromJson(json.fallbacks || []), - json.selectedAuth, testseed, ); return obj; @@ -2610,9 +2607,6 @@ Inbound.VLESSSettings = class extends Inbound.Settings { if (this.fallbacks && this.fallbacks.length > 0) { json.fallbacks = Inbound.VLESSSettings.toJsonArray(this.fallbacks); } - if (this.selectedAuth) { - json.selectedAuth = this.selectedAuth; - } // testseed is only meaningful for the exact xtls-rprx-vision flow, and only when // the user supplied a complete 4-positive-int array. Otherwise omit and let the diff --git a/web/html/form/protocol/vless.html b/web/html/form/protocol/vless.html index fd566e9d..21abc7b2 100644 --- a/web/html/form/protocol/vless.html +++ b/web/html/form/protocol/vless.html @@ -21,16 +21,6 @@ -