Commit 934353f017a2eff77363684234d0a8acf7e21046

Authored by huanggang
1 parent fcbe32ca

payment result url issue bugfix

cashier-trade/src/main/java/com/diligrp/cashier/trade/manager/PaymentResultManager.java
... ... @@ -58,7 +58,7 @@ public class PaymentResultManager {
58 58 }
59 59 }
60 60  
61   - if (ObjectUtils.isEmpty(uri)) {
  61 + if (ObjectUtils.isNotEmpty(uri)) {
62 62 try {
63 63 String payload = JsonUtils.toJsonString(paymentResult);
64 64 ServiceEndpointSupport.HttpResult httpResult = new NotifyHttpClient(uri).send(payload);
... ...