File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
app/src/main/java/com/wmods/wppenhacer/xposed/core/devkit Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -1456,7 +1456,8 @@ public synchronized static Method getFilterInitMethod(ClassLoader loader) throws
1456
1456
1457
1457
public synchronized static Class getFilterView (ClassLoader loader ) throws Exception {
1458
1458
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 ))));
1460
1461
if (results .isEmpty ()) throw new RuntimeException ("FilterView class not found" );
1461
1462
return results .get (0 ).getInstance (loader );
1462
1463
});
You can’t perform that action at this time.
0 commit comments