|
@@ -99,7 +99,9 @@ public class PayOrderUtils {
|
|
|
}
|
|
|
|
|
|
String payUrl = jsonObject.getString("payUrl");
|
|
|
- payUrl = payUrl.replaceAll("\\\\" , "");
|
|
|
+ if (StringUtils.isNotBlank(payUrl)) {
|
|
|
+ payUrl = payUrl.replaceAll("\\\\" , "");
|
|
|
+ }
|
|
|
resultMap.put("code", 1);
|
|
|
resultMap.put("data", payUrl);
|
|
|
return resultMap;
|