|
@@ -105,12 +105,13 @@ public class WeComAutoReplyImpl implements WeComAutoReply {
|
|
|
}
|
|
|
if (msgData.getMsgType() == 3) {
|
|
|
JSONObject text = new JSONObject();
|
|
|
- String name = getName(externalUserId, corpId);
|
|
|
- if (StringUtils.hasText(name)) {
|
|
|
- text.put("content", name + "," + msgData.getTitle());
|
|
|
- } else {
|
|
|
- text.put("content", msgData.getTitle());
|
|
|
- }
|
|
|
+// String name = getName(externalUserId, corpId);
|
|
|
+// if (StringUtils.hasText(name)) {
|
|
|
+// text.put("content", name + "," + msgData.getTitle());
|
|
|
+// } else {
|
|
|
+// text.put("content", msgData.getTitle());
|
|
|
+// }
|
|
|
+ text.put("content", msgData.getTitle());
|
|
|
param.put("text", text);
|
|
|
}
|
|
|
AutoReplyMsgSendRecord autoReplyMsgSendRecord = new AutoReplyMsgSendRecord();
|