Skip to content

Commit 33642af

Browse files
committed
Fix bug in Hide Chat Filters
1 parent 296c44d commit 33642af

File tree

2 files changed

+8
-15
lines changed

2 files changed

+8
-15
lines changed

app/src/main/java/com/wmods/wppenhacer/xposed/core/devkit/Unobfuscator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2066,7 +2066,7 @@ public synchronized static Method loadAdVerifyMethod(ClassLoader classLoader) th
20662066

20672067
public synchronized static Method loadHomeFiltersMethod(ClassLoader classLoader) throws Exception {
20682068
return UnobfuscatorCache.getInstance().getMethod(classLoader, () -> {
2069-
var method = findFirstMethodUsingStrings(classLoader, StringMatchType.Contains, "ConversationsFragment/updateHeadersVisibility");
2069+
var method = findFirstMethodUsingStrings(classLoader, StringMatchType.Contains, "ConversationsFragment/verticalswipetorevealbehavior");
20702070
if (method == null) throw new RuntimeException("HomeFilters method not found");
20712071
return method;
20722072
});

changelog.txt

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,12 @@
11
[BUGS FIXED]
2-
* Fixed bug in "Show Edit History" (Logic has been significantly improved, maintaining compatibility with future versions).
3-
* Fixed bug that caused WhatsApp to crash when navigating between contacts.
4-
* Fixed bug when hiding the search bar on the home screen.
5-
* Fixed bug when opening the Theme Manager (Thanks to MohdAfix).
6-
* Fixed bug in the New Settings Style (Thanks to MohdAfix).
7-
* Fixed a theme bug that occasionally generated a NullPointer error.
8-
9-
[IMPROVED]
10-
* Added compatibility with themes created in the 'WA Enhancer Theme' group; it is now possible to import them directly through the manager.
11-
* Contact and chat lists now use Listeners for easier implementation of new features (For devs).
2+
* Fixed a bug when hiding the conversation filter on the home screen
3+
* Removed logs that caused increased memory usage in WhatsApp
124

135
[FUNCTION]
14-
* Added a function to check if a user has blocked you on WhatsApp (A message appears on the conversation screen).
15-
Note: This function may present a false-positive in certain situations, as it works by verifying if the encryption key between you and your contact is correct. If there is no internet connection, if the key is corrupted, or if other technical issues occur, it may appear as a block even if it is not.
16-
Acknowledgment: Thanks to gxFs7 for opening issue 487 and explaining this verification method.
6+
* Added a function to disable ads in WhatsApp Stories (Enable only 1.26.XX or never)
7+
8+
[IMPROVED]
9+
* Improved validation of blocked contact
1710

1811
[WAE]
19-
* Translations updated via Crowdin.
12+
* Translations updated via Crowdin.

0 commit comments

Comments
 (0)