Skip to content

Commit

Permalink
🎨 #1483 微信支付异步通知解析时使用通知里的签名类型进行验签
Browse files Browse the repository at this point in the history
  • Loading branch information
binarywang committed Apr 4, 2020
1 parent fb3ed0b commit 61e6221
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public WxPayOrderNotifyResult parseOrderNotifyResult(String xmlData) throws WxPa
log.debug("微信支付异步通知请求参数:{}", xmlData);
WxPayOrderNotifyResult result = WxPayOrderNotifyResult.fromXML(xmlData);
log.debug("微信支付异步通知请求解析后的对象:{}", result);
result.checkResult(this, this.getConfig().getSignType(), false);
result.checkResult(this, result.getSignType(), false);
return result;
} catch (WxPayException e) {
throw e;
Expand Down

0 comments on commit 61e6221

Please sign in to comment.