mirror of
https://github.com/2dust/v2rayN.git
synced 2026-02-28 21:23:04 +00:00
Compare commits
2 commits
ab052e179a
...
44c9c7c8be
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
44c9c7c8be | ||
|
|
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