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;