This commit is contained in:
Bryan Ashby 2018-11-27 22:01:14 -07:00
parent 098c24e48a
commit 6d2c095976

View file

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