diff options
| author | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-12-30 02:38:49 +0300 |
|---|---|---|
| committer | mhsanaei <ho3ein.sanaei@gmail.com> | 2024-12-30 02:38:49 +0300 |
| commit | 6cc07254e01516c79092b7af7c0ced4918e16705 (patch) | |
| tree | 5335dbab417766134f54b73f3c5de9158a8e7d94 | |
| parent | 4ad5a5aba4ec78dde614d8714555e10e6d1778cc (diff) | |
Fallback - Reality
this is not my problem they don't mention it on their document
| -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 8c99a67a..ba4db1db 100644 --- a/web/html/xui/form/protocol/trojan.html +++ b/web/html/xui/form/protocol/trojan.html @@ -18,7 +18,7 @@ </table> </a-collapse-panel> </a-collapse> -<template v-if="inbound.isTcp && !inbound.stream.isReality"> +<template v-if="inbound.isTcp && (inbound.stream.isReality || inbound.stream.isTls)"> <a-form :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }"> <a-form-item label="Fallbacks"> <a-button icon="plus" type="primary" size="small" @click="inbound.settings.addFallback()"></a-button> diff --git a/web/html/xui/form/protocol/vless.html b/web/html/xui/form/protocol/vless.html index 2f58b28a..8c6dcf2e 100644 --- a/web/html/xui/form/protocol/vless.html +++ b/web/html/xui/form/protocol/vless.html @@ -18,7 +18,7 @@ </table> </a-collapse-panel> </a-collapse> -<template v-if="inbound.isTcp && !inbound.stream.isReality"> +<template v-if="inbound.isTcp && (inbound.stream.isReality || inbound.stream.isTls)"> <a-form :colon="false" :label-col="{ md: {span:8} }" :wrapper-col="{ md: {span:14} }"> <a-form-item label="Fallbacks"> <a-button icon="plus" type="primary" size="small" @click="inbound.settings.addFallback()"></a-button> |
