From ff13552c9670550dcd7931f0433db0c9e170850a Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 17 Aug 2024 15:42:15 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=91=20Rever=20param=20change=20in=20co?= =?UTF-8?q?rs-proxy.js?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- services/cors-proxy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/cors-proxy.js b/services/cors-proxy.js index e1c9a8b6..9c51214c 100644 --- a/services/cors-proxy.js +++ b/services/cors-proxy.js @@ -33,7 +33,7 @@ module.exports = (req, res) => { const requestConfig = { method: req.method, url: targetURL, - data: req.body, + json: req.body, headers, };