Skip to content

Commit 695a073

Browse files
Fix sing-box selector generation for dynamic group tags (#9015)
1 parent 01c85ad commit 695a073

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

v2rayN/ServiceLib/Services/CoreConfig/Singbox/SingboxOutboundService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ private List<BaseServer4Sbox> BuildAllProxyOutbounds(string baseTagName = Global
2222
}
2323
if (withSelector)
2424
{
25-
var proxyTags = proxyOutboundList.Where(n => n.tag.StartsWith(Global.ProxyTag)).Select(n => n.tag).ToList();
25+
var proxyTags = proxyOutboundList.Where(n => n.tag.StartsWith(baseTagName)).Select(n => n.tag).ToList();
2626
if (proxyTags.Count > 1)
2727
{
2828
proxyOutboundList.InsertRange(0, BuildSelectorOutbounds(proxyTags, baseTagName));

0 commit comments

Comments
 (0)