Skip to content

Commit

Permalink
fix: typo in RevokeMsgHook
Browse files Browse the repository at this point in the history
  • Loading branch information
cinit committed Jul 24, 2023
1 parent ef219e0 commit a41e7c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/cc/ioctl/hook/msg/RevokeMsgHook.java
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ private void onRecallSysMsgForNT(int chatType, String peerUid, String recallOpUi
String msgAuthorName = ContactUtils.getDisplayNameForUid(msgAuthorUid, peerUid);
String msgAuthorUin = RelationNTUinAndUidApi.getUinFromUid(msgAuthorUid);
// msgAuthorUin may be empty, in the case when in a group chat, NT kernel are not so familiar with the one
if (recallOpUid.equals(msgAuthorUin)) {
if (recallOpUid.equals(msgAuthorUid)) {
builder.append(new NtGrayTipHelper.NtGrayTipJsonBuilder.UserItem(String.valueOf(operatorUin), recallOpUid, operatorName));
builder.appendText("撤回了一条消息(没收到) [seq=" + msgSeq + "]");
summary = operatorName + "撤回了一条消息(没收到)";
Expand Down

0 comments on commit a41e7c5

Please sign in to comment.