mirror of
https://github.com/2dust/v2rayN.git
synced 2026-03-05 07:33:16 +00:00
Compare commits
4 commits
12f879d39a
...
891d8341ac
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
891d8341ac | ||
|
|
8e2348ed59 | ||
|
|
4eb5103a39 | ||
|
|
db13015bd4 |
2 changed files with 3 additions and 3 deletions
|
|
@ -413,8 +413,8 @@ public partial class CoreConfigSingboxService
|
||||||
}
|
}
|
||||||
|
|
||||||
var tag = $"{node.IndexId}-{Global.ProxyTag}";
|
var tag = $"{node.IndexId}-{Global.ProxyTag}";
|
||||||
if (_coreConfig.outbounds.Any(o => o.tag.StartsWith(tag))
|
if (_coreConfig.outbounds.Any(o => o.tag == tag)
|
||||||
|| (_coreConfig.endpoints != null && _coreConfig.endpoints.Any(e => e.tag.StartsWith(tag))))
|
|| (_coreConfig.endpoints != null && _coreConfig.endpoints.Any(e => e.tag == tag)))
|
||||||
{
|
{
|
||||||
return tag;
|
return tag;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -165,7 +165,7 @@ public partial class CoreConfigV2rayService
|
||||||
}
|
}
|
||||||
|
|
||||||
var tag = $"{node.IndexId}-{Global.ProxyTag}";
|
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;
|
return tag;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue