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

This commit is contained in:
Rzy 2024-08-12 14:32:46 +08:00
parent b3b782dfe6
commit 8fb2f52108
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, pay.ThirdMsg)
controllers.ApiRes(c, nil, pay.PayCode)
return
}