Skip to content

Commit

Permalink
🐛 #3002 【企业微信】修复新增外部联系人回调去重错误问题
Browse files Browse the repository at this point in the history
  • Loading branch information
EasonLink authored May 4, 2023
1 parent de0266b commit 4b96475
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,8 @@ private boolean isMsgDuplicated(WxCpTpXmlMessage wxMessage) {
.append("-").append(StringUtils.trimToEmpty(wxMessage.getAuthCorpId()))
.append("-").append(StringUtils.trimToEmpty(wxMessage.getUserID()))
.append("-").append(StringUtils.trimToEmpty(wxMessage.getChangeType()))
.append("-").append(StringUtils.trimToEmpty(wxMessage.getServiceCorpId()));
.append("-").append(StringUtils.trimToEmpty(wxMessage.getServiceCorpId()))
.append("-").append(StringUtils.trimToEmpty(wxMessage.getExternalUserID()));
}

if (wxMessage.getMsgType() != null) {
Expand Down

0 comments on commit 4b96475

Please sign in to comment.