fix return callbacks

pull/1259/merge
Berkeley Martinez 2015-07-29 11:41:41 -07:00
parent 9e22122832
commit 9731e8ccc6
1 changed files with 3 additions and 3 deletions

View File

@ -144,17 +144,17 @@ module.exports = function(User) {
}
User.findOne({ where: { username } }, (err, user) => {
if (err) {
cb(err);
return cb(err);
}
if (!user || user.username !== username) {
cb(new Error('FCC: no user found for %s', username));
return cb(new Error('FCC: no user found for %s', username));
}
const aboutUser = {
username: user.username,
bio: user.bio,
github: user.githubProfile
};
cb(null, aboutUser);
return cb(null, aboutUser);
});
};