From 55ffb1f9ac04cd493a9b110c323cab2e9852a903 Mon Sep 17 00:00:00 2001 From: QianYe <66180481+sushen339@users.noreply.github.com> Date: Thu, 18 Sep 2025 23:26:01 +0800 Subject: [PATCH] Update inbound.js --- web/assets/js/model/inbound.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/assets/js/model/inbound.js b/web/assets/js/model/inbound.js index c45d7d40..7892bbee 100644 --- a/web/assets/js/model/inbound.js +++ b/web/assets/js/model/inbound.js @@ -1313,7 +1313,7 @@ class Inbound extends XrayCommonClass { const security = forceTls == 'same' ? this.stream.security : forceTls; const params = new Map(); params.set("type", this.stream.network); - params.set("encryption", this.settings.encryption); + params.set("encryption", this.settings.encryption || "none"); switch (type) { case "tcp": const tcp = this.stream.tcp;