mirror of
https://github.com/2dust/v2rayN.git
synced 2025-09-02 08:16:19 +00:00
Update V2rayConfigHandler.cs
This commit is contained in:
parent
b487dcf448
commit
e2de9b4703
1 changed files with 8 additions and 1 deletions
|
@ -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 a new issue