diff --git a/functions/http/index.js b/functions/http/index.js index 92b7846ce4..d53217d45f 100644 --- a/functions/http/index.js +++ b/functions/http/index.js @@ -186,7 +186,7 @@ exports.uploadFile = (req, res) => { res.send(); }); - req.pipe(busboy); + busboy.end(req.rawBody); } else { // Return a "method not allowed" error res.status(405).end();