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>2024-12-27 23:30:51 +0300
committerMHSanaei <ho3ein.sanaei@gmail.com>2024-12-27 23:30:51 +0300
commit747ad3b9c8f3a368b9c3d808f5f4b56933c1962b (patch)
tree140638aacf4b762bb9bdcef29b2a2b9e4df8a08b /web/assets/js
parentcf879f9527b2d2f06d0d9c77e9e13ac7c60ad873 (diff)
bug fix - outbound xhttp link
Diffstat (limited to 'web/assets/js')
-rw-r--r--web/assets/js/model/outbound.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/web/assets/js/model/outbound.js b/web/assets/js/model/outbound.js
index eb4d7f71..d58839bc 100644
--- a/web/assets/js/model/outbound.js
+++ b/web/assets/js/model/outbound.js
@@ -721,6 +721,7 @@ class Outbound extends CommonClass {
let headerType = url.searchParams.get('headerType') ?? undefined;
let host = url.searchParams.get('host') ?? undefined;
let path = url.searchParams.get('path') ?? undefined;
+ let mode = url.searchParams.get('mode') ?? undefined;
if (type === 'tcp' || type === 'none') {
stream.tcp = new TcpStreamSettings(headerType ?? 'none', host, path);