From 1e2fd822e6e0c034495959e9704b8622e983afa6 Mon Sep 17 00:00:00 2001 From: abdulrahman Date: Sat, 16 May 2026 08:40:50 +0300 Subject: [PATCH] fix: preserve VLESS encryption/decryption when searching/filtering inbounds (fixes #4405) --- frontend/src/pages/inbounds/InboundList.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/inbounds/InboundList.vue b/frontend/src/pages/inbounds/InboundList.vue index 4f54b366..9122abc9 100644 --- a/frontend/src/pages/inbounds/InboundList.vue +++ b/frontend/src/pages/inbounds/InboundList.vue @@ -143,7 +143,7 @@ function projectInbound(dbInbound, predicate) { } if (!Array.isArray(settings.clients)) return next; const filtered = settings.clients.filter(predicate); - next.settings = Inbound.Settings.fromJson(dbInbound.protocol, { clients: filtered }); + next.settings = Inbound.Settings.fromJson(dbInbound.protocol, { ...settings, clients: filtered }); next.invalidateCache(); return next; }