mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-06-28 13:16:19 +08:00
🎨 修复错误转换逻辑
This commit is contained in:
parent
95d130d927
commit
ddf207e15b
@ -56,7 +56,7 @@ public class WxMpMassTagMessageGsonAdapter implements JsonSerializer<WxMpMassTag
|
||||
messageJson.add(WxConsts.MassMsgType.MPVIDEO, sub);
|
||||
}
|
||||
messageJson.addProperty("msgtype", message.getMsgType());
|
||||
messageJson.addProperty("send_ignore_reprint", message.isSendIgnoreReprint() ? 0 : 1);
|
||||
messageJson.addProperty("send_ignore_reprint", message.isSendIgnoreReprint() ? 1 : 0);
|
||||
|
||||
if (StringUtils.isNotEmpty(message.getClientMsgId())) {
|
||||
messageJson.addProperty("clientmsgid", message.getClientMsgId());
|
||||
|
Loading…
Reference in New Issue
Block a user