mirror of https://github.com/2dust/v2rayN
Update V2rayConfigHandler.cs
parent
b487dcf448
commit
e2de9b4703
|
@ -473,7 +473,14 @@ namespace v2rayN.Handler
|
|||
//if xtls
|
||||
if (config.streamSecurity() == Global.StreamSecurityX)
|
||||
{
|
||||
usersItem.flow = config.flow();
|
||||
if (Utils.IsNullOrEmpty(config.flow()))
|
||||
{
|
||||
usersItem.flow = "xtls-rprx-origin";
|
||||
}
|
||||
else
|
||||
{
|
||||
usersItem.flow = config.flow();
|
||||
}
|
||||
}
|
||||
|
||||
//Mux
|
||||
|
|
Loading…
Reference in New Issue