Skip to content

Commit

Permalink
remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
liamcottle committed Nov 19, 2024
1 parent 0db9bcf commit 28716dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ function main() {
const chunks = [];
req.on('data', (chunk) => chunks.push(chunk));
req.on('end', () => {
req.rawBody = Buffer.concat(chunks); // Combine chunks into a single Buffer
req.rawBody = Buffer.concat(chunks);
next();
});
});
Expand Down

0 comments on commit 28716dc

Please sign in to comment.