Skip to content

Commit 2ea9c5a

Browse files
authored
Fix mux (#9117)
1 parent 3cb2869 commit 2ea9c5a

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

v2rayN/ServiceLib/Services/CoreConfig/V2ray/V2rayOutboundService.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,12 +225,13 @@ private void FillOutbound(Outbounds4Ray outbound)
225225
usersItem.email = Global.UserEMail;
226226
usersItem.encryption = protocolExtra.VlessEncryption;
227227

228-
if (!protocolExtra.Flow.IsNullOrEmpty())
228+
if (protocolExtra.Flow.IsNullOrEmpty())
229229
{
230-
usersItem.flow = protocolExtra.Flow;
230+
FillOutboundMux(outbound, muxEnabled, muxEnabled);
231231
}
232232
else
233233
{
234+
usersItem.flow = protocolExtra.Flow;
234235
FillOutboundMux(outbound, false, muxEnabled);
235236
}
236237
outbound.settings.servers = null;

0 commit comments

Comments
 (0)