This commit is contained in:
Bryan Ashby 2018-11-27 22:01:14 -07:00
parent 098c24e48a
commit 6d2c095976
1 changed files with 3 additions and 1 deletions

View File

@ -473,7 +473,9 @@ module.exports = class User {
return this.removeProperty(name, next);
},
err => {
return cb(err);
if(cb) {
return cb(err);
}
});
}