diff --git a/functions/http/index.js b/functions/http/index.js index 67f5088a6c..2b762ec742 100644 --- a/functions/http/index.js +++ b/functions/http/index.js @@ -182,7 +182,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();