Skip to content

Commit

Permalink
docs: add extended option on body-parser example
Browse files Browse the repository at this point in the history
closes #1087
  • Loading branch information
Dmitry Petukhov authored and dougwilson committed Oct 20, 2016
1 parent aa47dd9 commit 0dcb375
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Readme.md
Expand Up @@ -26,7 +26,7 @@ app.use(cookieSession({

// parse urlencoded request bodies into req.body
var bodyParser = require('body-parser');
app.use(bodyParser.urlencoded());
app.use(bodyParser.urlencoded({extended: false}));

// respond to all requests
app.use(function(req, res){
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -25,7 +25,7 @@
"devDependencies": {
"istanbul": "0.4.5",
"mocha": "3.1.2",
"supertest": "2.0.0"
"supertest": "2.0.1"
},
"license": "MIT",
"files": [
Expand Down

0 comments on commit 0dcb375

Please sign in to comment.