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-04 14:18:23 +0300
committermhsanaei <ho3ein.sanaei@gmail.com>2025-07-04 14:25:24 +0300
commit24a313d60519b53814925ab3178657cb627f7187 (patch)
treed4d4f68651228e79dd2830c256192baf1f460923 /web/assets/js
parentc81c27073cada91940685dbb85f703ca4c3a4644 (diff)
fixed: type #3186
Diffstat (limited to 'web/assets/js')
-rw-r--r--web/assets/js/model/inbound.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/web/assets/js/model/inbound.js b/web/assets/js/model/inbound.js
index 5228001c..ff30ef1b 100644
--- a/web/assets/js/model/inbound.js
+++ b/web/assets/js/model/inbound.js
@@ -1249,7 +1249,6 @@ class Inbound extends XrayCommonClass {
id: clientId,
scy: security,
net: this.stream.network,
- type: 'none',
tls: tls,
};
const network = this.stream.network;
@@ -1284,7 +1283,7 @@ class Inbound extends XrayCommonClass {
const xhttp = this.stream.xhttp;
obj.path = xhttp.path;
obj.host = xhttp.host?.length > 0 ? xhttp.host : this.getHeader(xhttp, 'host');
- obj.mode = xhttp.mode;
+ obj.type = xhttp.mode;
}
if (tls === 'tls') {