Update V2rayConfigHandler.cs

pull/1044/head
2dust 4 years ago
parent b487dcf448
commit e2de9b4703

@ -472,9 +472,16 @@ namespace v2rayN.Handler
usersItem.encryption = config.security();
//if xtls
if (config.streamSecurity() == Global.StreamSecurityX)
{
if (Utils.IsNullOrEmpty(config.flow()))
{
usersItem.flow = "xtls-rprx-origin";
}
else
{
usersItem.flow = config.flow();
}
}
//Mux
outbound.mux.enabled = config.muxEnabled;

Loading…
Cancel
Save