Skip to content

Commit

Permalink
fix: Syntax in TimForceReplyHook.java
Browse files Browse the repository at this point in the history
  • Loading branch information
MoonLeeeaf authored Jul 29, 2024
1 parent a7b7ab0 commit b0d335d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public boolean isAvailable() {
@Override
public boolean initOnce() throws Exception {
Class<?> baseBubbleBuilderClass = Initiator.loadClass("com.tencent.mobileqq.activity.aio.BaseBubbleBuilder");
Method a = baseBubbleBuilderClass.getDeclaredMethod("a", Initiator.loadClass('com.tencent.mobileqq.data.ChatMessage'), Initiator.loadClass('com.tencent.mobileqq.utils.dialogutils.QQCustomMenu'));
Method a = baseBubbleBuilderClass.getDeclaredMethod("a", Initiator.loadClass("com.tencent.mobileqq.data.ChatMessage"), Initiator.loadClass("com.tencent.mobileqq.utils.dialogutils.QQCustomMenu"));
HookUtils.hookBeforeIfEnabled(this, a, param -> {
// Lcom/tencent/mobileqq/utils/dialogutils/QQCustomMenu;
Object qqCustomMenu = param.args[0];
Expand Down

0 comments on commit b0d335d

Please sign in to comment.