mirror of
https://github.com/2dust/v2rayN.git
synced 2026-04-16 12:35:46 +00:00
Fix sing-box selector generation for dynamic group tags
This commit is contained in:
parent
1090afd774
commit
77a4c894b3
1 changed files with 1 additions and 1 deletions
|
|
@ -22,7 +22,7 @@ public partial class CoreConfigSingboxService
|
|||
}
|
||||
if (withSelector)
|
||||
{
|
||||
var proxyTags = proxyOutboundList.Where(n => n.tag.StartsWith(Global.ProxyTag)).Select(n => n.tag).ToList();
|
||||
var proxyTags = proxyOutboundList.Where(n => n.tag.StartsWith(baseTagName)).Select(n => n.tag).ToList();
|
||||
if (proxyTags.Count > 1)
|
||||
{
|
||||
proxyOutboundList.InsertRange(0, BuildSelectorOutbounds(proxyTags, baseTagName));
|
||||
|
|
|
|||
Loading…
Reference in a new issue