Commit 6fc3064e authored by hezhen's avatar hezhen

123

parent df525ee7
...@@ -171,7 +171,8 @@ public class JPushBiz extends BaseBiz<MessagePushMapper, MessagePush> { ...@@ -171,7 +171,8 @@ public class JPushBiz extends BaseBiz<MessagePushMapper, MessagePush> {
log.info("无有效数据--type=="+messagePush.getType()+"------userId=="+userIds); log.info("无有效数据--type=="+messagePush.getType()+"------userId=="+userIds);
return null; return null;
} }
audience=Audience.alias(userIds); String [] userIdList=userIds.split(",");
audience=Audience.alias(userIdList);
} }
JsonObject intent = new JsonObject(); JsonObject intent = new JsonObject();
if (StringUtils.isNotBlank(messagePush.getIntent())){ if (StringUtils.isNotBlank(messagePush.getIntent())){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment