Skip to content

Commit

Permalink
Do the right thing with qs params
Browse files Browse the repository at this point in the history
  • Loading branch information
Techwraith committed Mar 7, 2012
1 parent 4d275a1 commit 4155740
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/app.js
Expand Up @@ -18,7 +18,7 @@

var fs = require('fs')
, url = require('url')
, querystring = require('qs')
, querystring = require('../deps/qs')
, path = require('path')
, cwd = process.cwd()
, errors = require('./errors')
Expand Down
2 changes: 1 addition & 1 deletion lib/routers/regexp_router.js
Expand Up @@ -225,7 +225,7 @@ var Router = function () {

/*
// build the possibly empty query string
var qs = require('qs').stringify(url[1]);
var qs = require('../../deps/qs').stringify(url[1]);
// if there is a query string...
if (qs.length > 0) {
Expand Down

0 comments on commit 4155740

Please sign in to comment.