|
@@ -86,7 +86,7 @@ public class GameAppletServiceImpl extends ServiceImpl<GameAppletMapper, GameApp
|
|
}
|
|
}
|
|
AppletMsgDTO appletMsgDTO = JsonUtil.toObj(postData, AppletMsgDTO.class);
|
|
AppletMsgDTO appletMsgDTO = JsonUtil.toObj(postData, AppletMsgDTO.class);
|
|
//消息内容判断, 值回复文本消息为2的内容
|
|
//消息内容判断, 值回复文本消息为2的内容
|
|
- if (!Objects.equals(appletMsgDTO.getMsgType(), "text") && !Objects.equals(appletMsgDTO.getContent(), "2")) {
|
|
|
|
|
|
+ if (!Objects.equals(appletMsgDTO.getMsgType(), "text") || !Objects.equals(appletMsgDTO.getContent(), "2")) {
|
|
return "success";
|
|
return "success";
|
|
}
|
|
}
|
|
//查询用户信息
|
|
//查询用户信息
|