From a754cc1d8918f3556d39e56a4d6fd9e0bc675abe Mon Sep 17 00:00:00 2001 From: vigdorov Date: Sun, 2 Aug 2020 23:29:20 +0300 Subject: [PATCH] =?UTF-8?q?HOT-FIX.=20=D0=98=D1=81=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=B8=D0=BB=20=D0=BE=D1=88=D0=B8=D0=B1=D0=BA=D1=83=20HttpApi?= =?UTF-8?q?=20=D0=BF=D1=80=D0=B8=20=D0=BE=D1=82=D0=BF=D1=80=D0=B0=D0=B2?= =?UTF-8?q?=D0=BA=D0=B5=20=D1=82=D0=B5=D0=BB=D0=B0=20=D0=B7=D0=B0=D0=BF?= =?UTF-8?q?=D1=80=D0=BE=D1=81=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/HttpAPI.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api/HttpAPI.js b/src/api/HttpAPI.js index eb9451c..cc813b5 100644 --- a/src/api/HttpAPI.js +++ b/src/api/HttpAPI.js @@ -26,8 +26,8 @@ class HttpApi { * @param {string} url - адрес запроса * @param {Object} body - тело запроса */ - request = (method, url, body, config) => { - return httpAuthApi.request({...config, method, url, body}); + request = (method, url, data, config) => { + return httpAuthApi.request({...config, method, url, data}); } /**