if object doesn't exist user doesn't exist

v1.18.x
Barış Soner Uşaklı 7 years ago
parent 2d7d4a3fb4
commit fe18a12ee0

@ -50,15 +50,12 @@ module.exports = function (User) {
var userData;
async.waterfall([
function (next) {
User.exists(uid, next);
db.getObject('user:' + uid, next);
},
function (exists, next) {
if (!exists) {
function (_userData, next) {
if (!_userData) {
return callback();
}
User.getUserFields(uid, ['username', 'userslug', 'fullname', 'email'], next);
},
function (_userData, next) {
userData = _userData;
plugins.fireHook('static:user.delete', { uid: uid }, next);
},

Loading…
Cancel
Save