Skip to content

Commit 8b584ae

Browse files
authored
Merge pull request #203 from ranyeremil/master
PinnedList class not found fixed - 2.24.26.14
2 parents 952434e + ace3cd7 commit 8b584ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
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
@@ -875,7 +875,7 @@ public synchronized static Method loadPinnedLimitMethod(ClassLoader loader) thro
875875

876876
public synchronized static Method loadPinnedHashSetMethod(ClassLoader loader) throws Exception {
877877
return UnobfuscatorCache.getInstance().getMethod(loader, () -> {
878-
var clazz = findFirstClassUsingStrings(loader, StringMatchType.Contains, "SELECT jid, pinned_time FROM settings");
878+
var clazz = findFirstClassUsingStrings(loader, StringMatchType.Contains, "getPinnedJids/QUERY_CHAT_SETTINGS");
879879
if (clazz == null) throw new Exception("PinnedList class not found");
880880
var method = Arrays.stream(clazz.getDeclaredMethods()).filter(m -> m.getReturnType().equals(Set.class)).findFirst().orElse(null);
881881
if (method == null) throw new Exception("PinnedHashSet method not found");

0 commit comments

Comments
 (0)