Skip to content

Commit 4b96475

Browse files
authored
🐛 #3002 【企业微信】修复新增外部联系人回调去重错误问题
1 parent de0266b commit 4b96475

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

weixin-java-cp/src/main/java/me/chanjar/weixin/cp/tp/message/WxCpTpMessageRouter.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,8 @@ private boolean isMsgDuplicated(WxCpTpXmlMessage wxMessage) {
273273
.append("-").append(StringUtils.trimToEmpty(wxMessage.getAuthCorpId()))
274274
.append("-").append(StringUtils.trimToEmpty(wxMessage.getUserID()))
275275
.append("-").append(StringUtils.trimToEmpty(wxMessage.getChangeType()))
276-
.append("-").append(StringUtils.trimToEmpty(wxMessage.getServiceCorpId()));
276+
.append("-").append(StringUtils.trimToEmpty(wxMessage.getServiceCorpId()))
277+
.append("-").append(StringUtils.trimToEmpty(wxMessage.getExternalUserID()));
277278
}
278279

279280
if (wxMessage.getMsgType() != null) {

0 commit comments

Comments
 (0)