Skip to content
Prev Previous commit
Next Next commit
修改错误
Signed-off-by: huangxiaoming <huangxm129@163.com>
  • Loading branch information
huangxm129 committed Aug 4, 2020
commit 5d054cd3b5418409c75ead2d5e145cceb51f7e79
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ public WxCpBaseResp delCorpTag(String[] tagId, String[] groupId) throws WxErrorE
json.add("tag_id",new Gson().toJsonTree(tagId).getAsJsonArray());
}
if(ArrayUtils.isNotEmpty(groupId)){
json.add("group_id",new Gson().toJsonTree(tagId).getAsJsonArray());
json.add("group_id",new Gson().toJsonTree(groupId).getAsJsonArray());
}

final String url = this.mainService.getWxCpConfigStorage().getApiUrl(DEL_CORP_TAG);
Expand Down