Skip to content

Commit

Permalink
修复获取群消息中, 消息发送者的QQ。
Browse files Browse the repository at this point in the history
  • Loading branch information
dydhyhwu committed Oct 16, 2018
1 parent 7ec7ec6 commit 403788f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QQ.Framework/Packets/Receive/Message/Receive_0x0017.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ protected override void ParseBody()
{
case 0x01: // 群消息、被拉进/踢出群
{
FromQQ = Reader.ReadUInt32(); //发消息人的QQ
FromQQ = (long)Util.GetQQNumRetUint(Util.ToHex(Reader.ReadBytes(4))); //发消息人的QQ
MessageIndex = Reader.ReadBytes(4); //姑且叫消息索引吧
ReceiveTime = Reader.ReadBytes(4); //接收时间
Reader.ReadBytes(24);
Expand Down

0 comments on commit 403788f

Please sign in to comment.