mirror of
https://github.com/2dust/v2rayN.git
synced 2025-10-13 20:09:12 +00:00
Fixes Shadowquic Config Generate
This commit is contained in:
parent
6319684592
commit
c820b58067
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ public class CoreConfigShadowquicService
|
||||||
configYamlNode["inbound"] = inboundNode;
|
configYamlNode["inbound"] = inboundNode;
|
||||||
|
|
||||||
// outbound
|
// outbound
|
||||||
var alpn = new JsonArray();
|
var alpn = new List<string>();
|
||||||
foreach (var item in node.GetAlpn() ?? new List<string>())
|
foreach (var item in node.GetAlpn() ?? new List<string>())
|
||||||
{
|
{
|
||||||
alpn.Add(item);
|
alpn.Add(item);
|
||||||
|
|
Loading…
Reference in a new issue