mirror of
https://github.com/thelounge/thelounge
synced 2024-11-23 12:33:07 +00:00
Remove redundant variables (#397)
This commit is contained in:
parent
643e07dead
commit
f8044bfc96
2 changed files with 2 additions and 6 deletions
|
@ -122,10 +122,8 @@ ClientManager.prototype.readUserConfig = function(name) {
|
|||
if (users.indexOf(name) === -1) {
|
||||
return false;
|
||||
}
|
||||
var user = {};
|
||||
var data = fs.readFileSync(Helper.getUserConfigPath(name), "utf-8");
|
||||
user = JSON.parse(data);
|
||||
return user;
|
||||
return JSON.parse(data);
|
||||
};
|
||||
|
||||
ClientManager.prototype.removeUser = function(name) {
|
||||
|
|
|
@ -22,9 +22,7 @@ program
|
|||
if (err) {
|
||||
return;
|
||||
}
|
||||
var salt = bcrypt.genSaltSync(8);
|
||||
var hash = bcrypt.hashSync(password, salt);
|
||||
user.password = hash;
|
||||
user.password = bcrypt.hashSync(password, bcrypt.genSaltSync(8));
|
||||
fs.writeFileSync(
|
||||
file,
|
||||
JSON.stringify(user, null, " ")
|
||||
|
|
Loading…
Reference in a new issue