File tree Expand file tree Collapse file tree
app/src/main/java/com/wmods/wppenhacer/xposed/core/devkit Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1456,7 +1456,8 @@ public synchronized static Method getFilterInitMethod(ClassLoader loader) throws
14561456
14571457 public synchronized static Class getFilterView (ClassLoader loader ) throws Exception {
14581458 return UnobfuscatorCache .getInstance ().getClass (loader , () -> {
1459- var results = dexkit .findClass (new FindClass ().matcher (new ClassMatcher ().addMethod (new MethodMatcher ().name ("setInboxFilterHelper" ))));
1459+ var filter_id = Utils .getID ("conversations_swipe_to_reveal_filters_stub" , "id" );
1460+ var results = dexkit .findClass (FindClass .create ().matcher (ClassMatcher .create ().addMethod (MethodMatcher .create ().addUsingNumber (filter_id ))));
14601461 if (results .isEmpty ()) throw new RuntimeException ("FilterView class not found" );
14611462 return results .get (0 ).getInstance (loader );
14621463 });
You can’t perform that action at this time.
0 commit comments