This commit is contained in:
GitHub Merge Button 2012-05-13 06:54:54 -07:00
commit f29f5ffd0e

View file

@ -431,7 +431,7 @@ exports.setPassword = function(padID, password, callback)
if(ERR(err, callback)) return; if(ERR(err, callback)) return;
//set the password //set the password
pad.setPassword(password); pad.setPassword(password == "" ? null : password);
callback(); callback();
}); });