mirror of
https://gitee.com/ja-netfilter/ja-netfilter.git
synced 2024-11-16 23:49:38 +08:00
fixed classname mismatch
This commit is contained in:
parent
16c01a34a3
commit
f072b324cc
@ -32,7 +32,7 @@ public class Initializer {
|
||||
Set<String> classSet = Dispatcher.getInstance().getHookClassNames();
|
||||
for (Class<?> c : inst.getAllLoadedClasses()) {
|
||||
String name = c.getName();
|
||||
if (!classSet.contains(name.replace('/', '.'))) {
|
||||
if (!classSet.contains(name.replace('.', '/'))) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user