chore: Correct the decision of enabling find process
This commit is contained in:
parent
e555fd65ec
commit
dd72be0ef1
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ type RuleSet struct {
|
|||
}
|
||||
|
||||
func (rs *RuleSet) ShouldFindProcess() bool {
|
||||
return !rs.shouldFindProcess && rs.getProviders().ShouldFindProcess()
|
||||
return rs.shouldFindProcess || rs.getProviders().ShouldFindProcess()
|
||||
}
|
||||
|
||||
func (rs *RuleSet) RuleType() C.RuleType {
|
||||
|
|
Loading…
Reference in a new issue