Skip to content

Commit

Permalink
Fixes #2
Browse files Browse the repository at this point in the history
  • Loading branch information
mgesmundo committed Jul 7, 2014
1 parent 269cba6 commit 10472c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/restify-session.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ module.exports = function(config) {
var isNull = utils.isNull;

if (con.pass && con.pass.length > 0) {
session.client.auth(cfg.pass, function(err) {
session.client.auth(con.pass, function(err) {
if (err) {
throw err;
}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "restify-session",
"version": "1.0.2",
"version": "1.0.3",
"description": "Session manager for REST server without cookies",
"private": false,
"preferGlobal": false,
Expand Down

1 comment on commit 10472c7

@lsicotte
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks !

Please sign in to comment.