1
0
mirror of https://github.com/silenceper/wechat.git synced 2026-02-23 13:42:25 +08:00

fix: ineffectual assignment to err

This commit is contained in:
Thinker
2023-10-11 10:17:11 +08:00
parent f187fc0347
commit f45781cc69

View File

@@ -67,7 +67,7 @@ func (r *Client) GetCheckinData(req *GetCheckinDataRequest) (*GetCheckinDataResp
} }
result := &GetCheckinDataResponse{} result := &GetCheckinDataResponse{}
err = util.DecodeWithError(response, result, "GetCheckinData") err = util.DecodeWithError(response, result, "GetCheckinData")
return result, nil return result, err
} }
type ( type (