去掉第三方消息返回给接口

This commit is contained in:
Rzy 2024-08-12 14:33:09 +08:00
parent 8fb2f52108
commit e2378b0a39
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ func PayUrl(c *gin.Context) {
}
pay := thirdpay.ThirdPayUrl(check)
if pay.PayCode != errorcode.Success {
controllers.ApiRes(c, nil, pay.PayCode)
controllers.ApiRes(c, nil, pay.PayCode, pay.ThirdMsg)
return
}