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:
authorAlireza Ahmadi <alireza7@gmail.com>2023-12-06 00:43:06 +0300
committerAlireza Ahmadi <alireza7@gmail.com>2023-12-06 00:43:06 +0300
commite6c6c92ca2f4b4ac13307168dc26e56305ad9e1c (patch)
tree08726ef2519cedb27a41aa6ffc6e8c9835455db9 /web/html/xui
parentc419eadf15630518606ab434387079172070d340 (diff)
fix fallback link with nonTls #1286
Diffstat (limited to 'web/html/xui')
-rw-r--r--web/html/xui/inbounds.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/html/xui/inbounds.html b/web/html/xui/inbounds.html
index 2a6d74ab..c61104d5 100644
--- a/web/html/xui/inbounds.html
+++ b/web/html/xui/inbounds.html
@@ -993,7 +993,7 @@
newDbInbound = new DBInbound(dbInbound);
if (dbInbound.listen.startsWith("@")){
rootInbound = this.inbounds.find((i) =>
- i.tls &&
+ i.isTcp &&
['trojan','vless'].includes(i.protocol) &&
i.settings.fallbacks.find(f => f.dest === dbInbound.listen)
);