mirror of
https://github.com/2dust/v2rayN.git
synced 2026-04-16 04:25:45 +00:00
Fix mux
This commit is contained in:
parent
43dcb90632
commit
7c2750514e
1 changed files with 3 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue