From 7c2750514e7d4e38c43bb8a6fca185e3b83a3d2b Mon Sep 17 00:00:00 2001 From: DHR60 Date: Wed, 15 Apr 2026 16:21:00 +0800 Subject: [PATCH] Fix mux --- .../Services/CoreConfig/V2ray/V2rayOutboundService.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/v2rayN/ServiceLib/Services/CoreConfig/V2ray/V2rayOutboundService.cs b/v2rayN/ServiceLib/Services/CoreConfig/V2ray/V2rayOutboundService.cs index 5bf3f1dd..b04f777f 100644 --- a/v2rayN/ServiceLib/Services/CoreConfig/V2ray/V2rayOutboundService.cs +++ b/v2rayN/ServiceLib/Services/CoreConfig/V2ray/V2rayOutboundService.cs @@ -225,12 +225,13 @@ public partial class CoreConfigV2rayService usersItem.email = Global.UserEMail; usersItem.encryption = protocolExtra.VlessEncryption; - if (!protocolExtra.Flow.IsNullOrEmpty()) + if (protocolExtra.Flow.IsNullOrEmpty()) { - usersItem.flow = protocolExtra.Flow; + FillOutboundMux(outbound, muxEnabled, muxEnabled); } else { + usersItem.flow = protocolExtra.Flow; FillOutboundMux(outbound, false, muxEnabled); } outbound.settings.servers = null;