Skip to content

Commit 1ba1947

Browse files
authored
Merge pull request #312 from astola-studio/patch-2
Fixed Audio to Voice Forwarding
2 parents 8e12845 + 5ac0bd9 commit 1ba1947

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1527,8 +1527,8 @@ public synchronized static Method loadForwardAudioTypeMethod(ClassLoader classLo
15271527
if (results.length > 1) {
15281528
result = findFirstMethodUsingStrings(classLoader, StringMatchType.Contains, "forwardable", "FMessageFactory/newFMessageForForward/thumbnail");
15291529
} else {
1530-
// 2.24.18.xx returns one method
1531-
result = results[0];
1530+
// 2.24.18.xx method is changed
1531+
result = findFirstMethodUsingStrings(classLoader, StringMatchType.Contains, "Non-forwardable message(");
15321532
}
15331533
return result;
15341534
});

0 commit comments

Comments
 (0)