Skip to content

Commit

Permalink
fix: setting entry crash on debug clients
Browse files Browse the repository at this point in the history
  • Loading branch information
cinit committed Aug 20, 2024
1 parent f28ddad commit 6ffca7e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ protected void afterHookedMethod(MethodHookParam param) throws Throwable {
for (Field f : kProfileActivity.getDeclaredFields()) {
if (f.getType() == int.class && !Modifier.isStatic(f.getModifiers())) {
f.setAccessible(true);
if (f.getName().endsWith("Row") || f.getName().endsWith("Row2")) {
if (f.getName().endsWith("Row") || f.getName().endsWith("Row2") || "helpSectionCell".equals(f.getName())) {
possibleIds.add(f);
}
}
Expand Down

0 comments on commit 6ffca7e

Please sign in to comment.