Skip to content

Commit

Permalink
fix(qq): 🩹 fix QQAPI action name
Browse files Browse the repository at this point in the history
  • Loading branch information
AnzhiZhang committed Oct 2, 2024
1 parent 303fc24 commit c11e134
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public void sendMessage(String message, String targetId) {

private String genSendReq(String message, String targetId) {
JSONObject req = new JSONObject();
req.put("action", "send_msg");
req.put("action", "send_group_msg");
JSONObject params = new JSONObject();
params.put("group_id", targetId);
params.put("message", message);
Expand Down

0 comments on commit c11e134

Please sign in to comment.