mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-08-23 13:06:54 +08:00
🐛 #1288 企业微信修复创建成员同时回调create_user和update_user事件判断成重复的BUG
This commit is contained in:
parent
4f280bb939
commit
2faac86310
@ -219,8 +219,11 @@ public class WxCpMessageRouter {
|
||||
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());
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user