🩹 Send request body as data instead of json

This commit is contained in:
conlan0 2024-07-25 15:25:58 -04:00 committed by GitHub
parent bfcccd0139
commit 78ea929c93
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ module.exports = (req, res) => {
const requestConfig = {
method: req.method,
url: targetURL,
json: req.body,
data: req.body,
headers,
};