diff options
| author | Alireza Ahmadi <alireza.ahmadi@tzconnect.com> | 2023-03-23 22:14:51 +0300 |
|---|---|---|
| committer | Alireza Ahmadi <alireza.ahmadi@tzconnect.com> | 2023-03-23 22:14:51 +0300 |
| commit | 0605221628531dd46c4260004f0912d2b19c7a06 (patch) | |
| tree | b81cc076c7bf9978b9e1c0fac986258e3da823bb | |
| parent | 3856c4d0f95aa846aa44a14b0bc81d4e820c9db9 (diff) | |
Enable fallback in xtls as well
| -rw-r--r-- | web/html/xui/form/protocol/trojan.html | 2 | ||||
| -rw-r--r-- | web/html/xui/form/protocol/vless.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/web/html/xui/form/protocol/trojan.html b/web/html/xui/form/protocol/trojan.html index 840ce17d..70286735 100644 --- a/web/html/xui/form/protocol/trojan.html +++ b/web/html/xui/form/protocol/trojan.html @@ -76,7 +76,7 @@ </table> </a-collapse-panel> </a-collapse> -<template v-if="inbound.isTcp && inbound.tls"> +<template v-if="inbound.isTcp && (inbound.tls || inbound.xtls)"> <a-form layout="inline"> <a-form-item label="Fallbacks"> <a-row> diff --git a/web/html/xui/form/protocol/vless.html b/web/html/xui/form/protocol/vless.html index 6b3436f0..91691e93 100644 --- a/web/html/xui/form/protocol/vless.html +++ b/web/html/xui/form/protocol/vless.html @@ -82,7 +82,7 @@ </table> </a-collapse-panel> </a-collapse> -<template v-if="inbound.isTcp && inbound.tls"> +<template v-if="inbound.isTcp && (inbound.tls || inbound.xtls)"> <a-form layout="inline"> <a-form-item label="Fallbacks"> <a-row> |
