diff --git a/internal/push/getui/push.go b/internal/push/getui/push.go index fbdf3c778..9b57c24ee 100644 --- a/internal/push/getui/push.go +++ b/internal/push/getui/push.go @@ -163,7 +163,7 @@ func (g *Getui) request(url string, content interface{}, token string, returnStr log.NewInfo(operationID, "getui", utils.GetSelfFuncName(), "resp, ", string(result)) commonResp := GetuiCommonResp{} commonResp.Data = returnStruct - if err := json.Unmarshal(result, commonResp); err != nil { + if err := json.Unmarshal(result, &commonResp); err != nil { return err } return nil