mirror of
https://github.com/2dust/v2rayN.git
synced 2025-07-10 21:57:46 +00:00
Update V2rayConfigHandler.cs
This commit is contained in:
parent
f892f0c533
commit
6c0a364d03
1 changed files with 6 additions and 1 deletions
|
@ -467,9 +467,14 @@ namespace v2rayN.Handler
|
|||
//远程服务器用户ID
|
||||
usersItem.id = config.id();
|
||||
usersItem.alterId = 0;
|
||||
usersItem.flow = config.flow();
|
||||
usersItem.flow = string.Empty;
|
||||
usersItem.email = Global.userEMail;
|
||||
usersItem.encryption = config.security();
|
||||
//if xtls
|
||||
if (config.streamSecurity() == Global.StreamSecurityX)
|
||||
{
|
||||
usersItem.flow = config.flow();
|
||||
}
|
||||
|
||||
//Mux
|
||||
outbound.mux.enabled = config.muxEnabled;
|
||||
|
|
Loading…
Reference in a new issue