From 695a073cd63657d7dfca07e23c1f59f1b415a796 Mon Sep 17 00:00:00 2001 From: nirvanalinlei <143369142+nirvanalinlei@users.noreply.github.com> Date: Mon, 30 Mar 2026 20:12:36 +0800 Subject: [PATCH] Fix sing-box selector generation for dynamic group tags (#9015) --- .../Services/CoreConfig/Singbox/SingboxOutboundService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/v2rayN/ServiceLib/Services/CoreConfig/Singbox/SingboxOutboundService.cs b/v2rayN/ServiceLib/Services/CoreConfig/Singbox/SingboxOutboundService.cs index 0fc9733c..7a86761f 100644 --- a/v2rayN/ServiceLib/Services/CoreConfig/Singbox/SingboxOutboundService.cs +++ b/v2rayN/ServiceLib/Services/CoreConfig/Singbox/SingboxOutboundService.cs @@ -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));