🔥 Removes appended slash from URL

This commit is contained in:
Alicia Sykes 2022-01-01 00:41:56 +00:00
parent eb4e45dfb5
commit 661b1aab07
1 changed files with 1 additions and 1 deletions

View File

@ -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,
};