🐛 #1288 企业微信修复创建成员同时回调create_user和update_user事件判断成重复的BUG

This commit is contained in:
shushi 2019-11-19 17:21:06 +08:00 committed by Binary Wang
parent 4f280bb939
commit 2faac86310

View File

@ -219,8 +219,11 @@ public class WxCpMessageRouter {
messageId.append("-").append(wxMessage.getUserId()); messageId.append("-").append(wxMessage.getUserId());
} }
return this.messageDuplicateChecker.isDuplicate(messageId.toString()); if (StringUtils.isNotEmpty(wxMessage.getChangeType())) {
messageId.append("-").append(wxMessage.getChangeType());
}
return this.messageDuplicateChecker.isDuplicate(messageId.toString());
} }
/** /**