mirror of
https://github.com/zongzibinbin/MallChat.git
synced 2025-12-26 04:47:53 +08:00
Fix an error when sey the type of a reply message
This commit is contained in:
parent
52ab70510f
commit
321312d637
@ -120,7 +120,7 @@ public class TextMsgHandler extends AbstractMsgHandler {
|
||||
TextMsgResp.ReplyMsg replyMsgVO = new TextMsgResp.ReplyMsg();
|
||||
replyMsgVO.setId(replyMessage.getId());
|
||||
replyMsgVO.setUid(replyMessage.getFromUid());
|
||||
replyMessage.setType(replyMessage.getType());
|
||||
replyMsgVO.setType(replyMessage.getType());
|
||||
replyMsgVO.setBody(MsgHandlerFactory.getStrategyNoNull(replyMessage.getType()).showReplyMsg(replyMessage));
|
||||
User replyUser = userCache.getUserInfo(replyMessage.getFromUid());
|
||||
replyMsgVO.setUsername(replyUser.getName());
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user