We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cb2869 commit 2ea9c5aCopy full SHA for 2ea9c5a
1 file changed
v2rayN/ServiceLib/Services/CoreConfig/V2ray/V2rayOutboundService.cs
@@ -225,12 +225,13 @@ private void FillOutbound(Outbounds4Ray outbound)
225
usersItem.email = Global.UserEMail;
226
usersItem.encryption = protocolExtra.VlessEncryption;
227
228
- if (!protocolExtra.Flow.IsNullOrEmpty())
+ if (protocolExtra.Flow.IsNullOrEmpty())
229
{
230
- usersItem.flow = protocolExtra.Flow;
+ FillOutboundMux(outbound, muxEnabled, muxEnabled);
231
}
232
else
233
234
+ usersItem.flow = protocolExtra.Flow;
235
FillOutboundMux(outbound, false, muxEnabled);
236
237
outbound.settings.servers = null;
0 commit comments