mirror of
https://github.com/2dust/v2rayN.git
synced 2026-02-28 05:03:02 +00:00
Fix duplicates
This commit is contained in:
parent
e9a6411698
commit
0075939a73
2 changed files with 3 additions and 3 deletions
|
|
@ -413,8 +413,8 @@ public partial class CoreConfigSingboxService
|
|||
}
|
||||
|
||||
var tag = $"{node.IndexId}-{Global.ProxyTag}";
|
||||
if (_coreConfig.outbounds.Any(o => o.tag == tag)
|
||||
|| (_coreConfig.endpoints != null && _coreConfig.endpoints.Any(e => e.tag == tag)))
|
||||
if (_coreConfig.outbounds.Any(o => o.tag.StartsWith(tag))
|
||||
|| (_coreConfig.endpoints != null && _coreConfig.endpoints.Any(e => e.tag.StartsWith(tag))))
|
||||
{
|
||||
return tag;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -165,7 +165,7 @@ public partial class CoreConfigV2rayService
|
|||
}
|
||||
|
||||
var tag = $"{node.IndexId}-{Global.ProxyTag}";
|
||||
if (_coreConfig.outbounds.Any(p => p.tag == tag))
|
||||
if (_coreConfig.outbounds.Any(p => p.tag.StartsWith(tag)))
|
||||
{
|
||||
return tag;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue