Skip to content

Commit

Permalink
Update CorePatchForQ.java
Browse files Browse the repository at this point in the history
  • Loading branch information
aviraxp authored Sep 24, 2024
1 parent 6ed68f1 commit 28649b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/toolkit/coderstory/CorePatchForQ.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public void afterHookedMethod(MethodHookParam methodHookParam) throws Throwable
@Override
protected void beforeHookedMethod(MethodHookParam param) throws Throwable {
if (prefs.getBoolean("digestCreak", true)) {
if ((Integer) param.args[1] != 4 && prefs.getBoolean("authcreak", false)) {
if ((Integer) param.args[1] != 4 && (Integer) param.args[1] != 16 && prefs.getBoolean("authcreak", false)) {
param.setResult(Boolean.TRUE);
}
}
Expand Down

0 comments on commit 28649b5

Please sign in to comment.