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

This commit is contained in:
Rzy 2024-08-12 14:31:56 +08:00
parent 7a45794fbc
commit b3b782dfe6
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ func Refund(c *gin.Context) {
appCheckInfo := controllers.GetAppCheckInfo(c).(*services.AppCheck)
refund, errCode := thirdpay.ThirdPayRefund(c.Request.Context(), req, appCheckInfo, c.ClientIP())
if errCode != errorcode.Success {
controllers.ApiRes(c, nil, errCode, refund.ThirdMsg)
controllers.ApiRes(c, nil, errCode)
return
}
data := thirdpay.NewOrdersResp(refund.Order)