From 838f28d3d9bbedd0a3b359fa5e14c5ef70ccaf35 Mon Sep 17 00:00:00 2001 From: diPhantxm Date: Tue, 11 Apr 2023 23:20:46 +0300 Subject: [PATCH] fix --- ozon/fbo.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ozon/fbo.go b/ozon/fbo.go index 1c4ab8f..af1f2d8 100644 --- a/ozon/fbo.go +++ b/ozon/fbo.go @@ -363,7 +363,7 @@ func (c FBO) ListSupplyRequests(params *ListSupplyRequestsParams) (*ListSupplyRe resp := &ListSupplyRequestsResponse{} - response, err := c.client.Request(http.MethodPost, url, params, resp) + response, err := c.client.Request(http.MethodPost, url, params, resp, nil) if err != nil { return nil, err } @@ -406,7 +406,7 @@ func (c FBO) GetSupplyRequestInfo(params *GetSupplyRequestInfoParams) (*GetSuppl resp := &GetSupplyRequestInfoResponse{} - response, err := c.client.Request(http.MethodPost, url, params, resp) + response, err := c.client.Request(http.MethodPost, url, params, resp, nil) if err != nil { return nil, err } @@ -462,7 +462,7 @@ func (c FBO) ListProductsInSupplyRequest(params *ListProductsInSupplyRequestPara resp := &ListProductsInSupplyRequestResponse{} - response, err := c.client.Request(http.MethodPost, url, params, resp) + response, err := c.client.Request(http.MethodPost, url, params, resp, nil) if err != nil { return nil, err }