From 3d5b4fe495bc4111a2a3c5caa7a763528eedbfac Mon Sep 17 00:00:00 2001 From: ljc545w Date: Sun, 16 Oct 2022 20:38:10 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=AF=E6=8C=81=E7=BE=A4=E8=AF=AD=E9=9F=B3?= =?UTF-8?q?=E9=80=9A=E8=AF=9D=E6=B6=88=E6=81=AF=E8=8E=B7=E5=8F=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DWeChatRobot/ReceiveMessage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DWeChatRobot/ReceiveMessage.cpp b/DWeChatRobot/ReceiveMessage.cpp index e512d77..90c2d2c 100644 --- a/DWeChatRobot/ReceiveMessage.cpp +++ b/DWeChatRobot/ReceiveMessage.cpp @@ -249,7 +249,7 @@ void OnUpdateMessage(DWORD messageAddr) void OnVoipAckMessage(DWORD messageAddr) { DWORD type = *(DWORD *)(messageAddr + 0x38); - if (type == 0x32 || type == 0x33) + if (type == 0x32 || type == 0x33 || type == 0x2712) dealMessage(messageAddr, MSG_SYNC); } -- GitLab