Fix mux (#9117)
Some checks are pending
release Linux / build (push) Waiting to run
release Linux / release-zip (push) Blocked by required conditions
release Linux / build and release deb (push) Waiting to run
release Linux / build and release rpm (push) Waiting to run
release macOS / build (push) Waiting to run
release macOS / release-zip (push) Blocked by required conditions
release macOS / package and release macOS dmg (push) Blocked by required conditions
release Windows desktop (Avalonia UI) / build (push) Waiting to run
release Windows desktop (Avalonia UI) / release-zip (push) Blocked by required conditions
release Windows / build (push) Waiting to run
release Windows / release-zip (push) Blocked by required conditions

This commit is contained in:
DHR60 2026-04-15 11:06:26 +00:00 committed by GitHub
parent 3cb2869920
commit 2ea9c5a2ff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;