8000 多公众号管理下,两个问题修复 by silloy · Pull Request #1426 · binarywang/WxJava · GitHub
[go: up one dir, main page]

Skip to content

多公众号管理下,两个问题修复 #1426

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Mar 8, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
✨ 修改支付返回结果判断
  • Loading branch information
silloy committed Mar 4, 2020
commit a2855ac7254f446ff3f6a4dd934403db2df54fec
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ public void checkResult(WxPayService wxPayService, String signType, boolean chec

//校验结果是否成功
if (checkSuccess) {
List<String> successStrings = Lists.newArrayList(WxPayConstants.ResultCode.SUCCESS);
List<String> successStrings = Lists.newArrayList(WxPayConstants.ResultCode.SUCCESS, "");
if (!successStrings.contains(StringUtils.trimToEmpty(getReturnCode()).toUpperCase())
|| !successStrings.contains(StringUtils.trimToEmpty(getResultCode()).toUpperCase())) {
StringBuilder errorMsg = new StringBuilder();
Expand Down
0