File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
weixin-java-cp/src/main/java/me/chanjar/weixin/cp/message Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 14
14
import me .chanjar .weixin .cp .bean .message .WxCpXmlOutMessage ;
15
15
import org .apache .commons .lang3 .StringUtils ;
16
16
17
- import java .util .ArrayList ;
18
- import java .util .HashMap ;
19
- import java .util .List ;
20
- import java .util .Map ;
17
+ import java .util .*;
21
18
import java .util .concurrent .*;
22
19
23
20
/**
@@ -274,6 +271,9 @@ private boolean isMsgDuplicated(WxCpXmlMessage wxMessage) {
274
271
.append ("-" ).append (wxMessage .getCreateTime ())
275
272
.append ("-" ).append (wxMessage .getFromUserName ());
276
273
}
274
+ if (Objects .nonNull (wxMessage .getApprovalInfo ())) {
275
+ append (messageId , wxMessage .getApprovalInfo ().getSpNo ());
276
+ }
277
277
append (messageId , wxMessage .getUserId ());
278
278
append (messageId , wxMessage .getChangeType ());
279
279
append (messageId , wxMessage .getTagId ());
You can’t perform that action at this time.
0 commit comments