Fixed attackWith that was returning !node.isWhitelist() instead of true whe it's not in effect.
This commit is contained in:
parent
a5adc828dc
commit
42ab7e4d89
1 changed files with 1 additions and 1 deletions
|
|
@ -20,6 +20,6 @@ public class attackWith implements NodeHandler {
|
||||||
if (matches) return node.isWhitelist();
|
if (matches) return node.isWhitelist();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return !node.isWhitelist();
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue