mirror of
https://github.com/2dust/v2rayN.git
synced 2025-07-01 12:32:10 +00:00
string.Join的第二个参数(List<string>)改成ToArray
This commit is contained in:
parent
a23cb95a10
commit
b27c7fb2dd
1 changed files with 1 additions and 1 deletions
|
@ -204,7 +204,7 @@ namespace v2rayN
|
|||
}
|
||||
else
|
||||
{
|
||||
return string.Join(",", lst);
|
||||
return string.Join(",", lst.ToArray());
|
||||
}
|
||||
}
|
||||
catch (Exception ex)
|
||||
|
|
Loading…
Reference in a new issue