mirror of
https://github.com/2dust/v2rayN.git
synced 2025-08-29 06:16:22 +00:00
Update ConfigHandler.cs
过滤命中的关键字
This commit is contained in:
parent
97a369df0a
commit
e2d899a1ba
1 changed files with 1 additions and 1 deletions
|
@ -893,7 +893,7 @@ namespace v2rayN.Handler
|
|||
//filter
|
||||
if (!Utils.IsNullOrEmpty(subFilter))
|
||||
{
|
||||
if (!Regex.IsMatch(profileItem.remarks, subFilter))
|
||||
if (Regex.IsMatch(profileItem.remarks, subFilter))
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue