|
@@ -131,6 +131,12 @@ public class KfAppletMsgServiceImpl implements IKfAppletMsgService {
|
|
|
if (Strings.isNotBlank(orderId) && this.orderHandle(orderId, gameApplet.getGameId(), kfAppletMsgDTO, kfRoom, kfRoomMsg)) {
|
|
|
return;
|
|
|
}
|
|
|
+
|
|
|
+ if (Objects.equals(kfAppletMsgDTO.getMsgType(), KfRoomMsgTypeEnum.KF_MSG_TYPE_MINI_APP.getValue())) {
|
|
|
+ kfRoomMsg.setReadStatus(Boolean.TRUE);
|
|
|
+ kfRoomMsgService.save(kfRoomMsg);
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
this.systemReplyHandle(gameApplet.getGameId(), kfAppletMsgDTO.getFromUserName(), kfRoom);
|
|
|
|