From 661b1aab07ef2fac831e4e76f7c35cb95c6e6671 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 1 Jan 2022 00:41:56 +0000 Subject: [PATCH] :fire: Removes appended slash from URL --- 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 cb2d264f..97ac63b3 100644 --- a/services/cors-proxy.js +++ b/services/cors-proxy.js @@ -32,7 +32,7 @@ module.exports = (req, res) => { // Prepare the request const requestConfig = { method: req.method, - url: targetURL + req.url, + url: targetURL, json: req.body, headers, };