Compare commits

..

4 commits

Author SHA1 Message Date
DHR60
891d8341ac
Merge 8e2348ed59 into b5800f7dfc 2026-02-09 02:49:06 +00:00
DHR60
8e2348ed59 Fix 2026-02-09 10:48:54 +08:00
DHR60
4eb5103a39 Remove EnableExInbound 2026-02-09 10:28:48 +08:00
DHR60
db13015bd4 Tun protect 2026-02-09 10:28:48 +08:00
2 changed files with 3 additions and 3 deletions

View file

@ -413,8 +413,8 @@ public partial class CoreConfigSingboxService
}
var tag = $"{node.IndexId}-{Global.ProxyTag}";
if (_coreConfig.outbounds.Any(o => o.tag.StartsWith(tag))
|| (_coreConfig.endpoints != null && _coreConfig.endpoints.Any(e => e.tag.StartsWith(tag))))
if (_coreConfig.outbounds.Any(o => o.tag == tag)
|| (_coreConfig.endpoints != null && _coreConfig.endpoints.Any(e => e.tag == tag)))
{
return tag;
}

View file

@ -165,7 +165,7 @@ public partial class CoreConfigV2rayService
}
var tag = $"{node.IndexId}-{Global.ProxyTag}";
if (_coreConfig.outbounds.Any(p => p.tag.StartsWith(tag)))
if (_coreConfig.outbounds.Any(p => p.tag == tag))
{
return tag;
}