From 4780d9afcf4ba5162da4819277dabbdadb667e7e Mon Sep 17 00:00:00 2001 From: xchacha20-poly1305 <139959885+xchacha20-poly1305@users.noreply.github.com> Date: Sun, 24 Sep 2023 08:14:45 +0800 Subject: [PATCH] fix: disable multiplex when using VLESS with flow --- db/ConfigBuilder.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/db/ConfigBuilder.cpp b/db/ConfigBuilder.cpp index 4216649..4760304 100644 --- a/db/ConfigBuilder.cpp +++ b/db/ConfigBuilder.cpp @@ -645,6 +645,9 @@ namespace NekoGui { needMux = false; } } + if (ent->type == "vless" && outbound["flow"] != "") { + needMux = false; + } // common if (IS_NEKO_BOX) {