We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de0266b commit 4b96475Copy full SHA for 4b96475
weixin-java-cp/src/main/java/me/chanjar/weixin/cp/tp/message/WxCpTpMessageRouter.java
@@ -273,7 +273,8 @@ private boolean isMsgDuplicated(WxCpTpXmlMessage wxMessage) {
273
.append("-").append(StringUtils.trimToEmpty(wxMessage.getAuthCorpId()))
274
.append("-").append(StringUtils.trimToEmpty(wxMessage.getUserID()))
275
.append("-").append(StringUtils.trimToEmpty(wxMessage.getChangeType()))
276
- .append("-").append(StringUtils.trimToEmpty(wxMessage.getServiceCorpId()));
+ .append("-").append(StringUtils.trimToEmpty(wxMessage.getServiceCorpId()))
277
+ .append("-").append(StringUtils.trimToEmpty(wxMessage.getExternalUserID()));
278
}
279
280
if (wxMessage.getMsgType() != null) {
0 commit comments