|
|
@@ -254,13 +254,18 @@ public class ConversationContentServiceImpl extends BaseMybatisDao<ChatMsgUserMa
|
|
|
{
|
|
|
String url=pushFileUrl(sdk, msgtype, jsonObject);
|
|
|
chatMsg.setMsgurl(url);
|
|
|
+ } else if (msgtype.equals("agree"))
|
|
|
+ {
|
|
|
+ chatMsg.setContent("[同意会话聊天]");
|
|
|
+ } else if (msgtype.equals("disagree"))
|
|
|
+ chatMsg.setContent("[不同意会话聊天]");
|
|
|
} else {
|
|
|
if (!jsonObject.getString("action").equals("switch")&&!jsonObject.getString("action").equals("recall")) {
|
|
|
chatMsg.setContent(jsonObject.toJSONString());
|
|
|
}
|
|
|
|
|
|
}
|
|
|
- }
|
|
|
+
|
|
|
}
|
|
|
|
|
|
private String pushCharset(String content1) {
|