This commit is contained in:
2dust 2024-07-10 17:32:26 +08:00
parent 7545763dae
commit 39faccfd0b
2 changed files with 2 additions and 1 deletions

View file

@ -847,7 +847,7 @@ namespace v2rayN.Handler.CoreConfig
tag = tag,
address = "223.5.5.5",
detour = Global.DirectTag,
strategy = strategy
strategy = Utils.IsNullOrEmpty(strategy) ? null : strategy,
});
var lstDomain = singboxConfig.outbounds

View file

@ -137,6 +137,7 @@ namespace v2rayN.Handler.Fmt
item.publicKey = Utils.UrlDecode(query["pbk"] ?? "");
item.shortId = Utils.UrlDecode(query["sid"] ?? "");
item.spiderX = Utils.UrlDecode(query["spx"] ?? "");
item.allowInsecure = (query["allowInsecure"] ?? "") == "1" ? "true" : "";
item.network = query["type"] ?? nameof(ETransport.tcp);
switch (item.network)