mirror of
https://github.com/2dust/v2rayN.git
synced 2026-04-14 11:35:44 +00:00
Fix sing-box selector generation for dynamic group tags (#9015)
This commit is contained in:
parent
01c85adedf
commit
695a073cd6
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