3
0
mirror of https://github.com/reality/dbot.git synced 2024-12-26 04:32:37 +01:00

null chekc in profile

This commit is contained in:
reality 2013-10-29 15:52:20 +00:00
parent 1920b4fd03
commit 13a2c465ae

View File

@ -67,7 +67,7 @@ var api = function(dbot) {
'getAllProfilesWith': function(item, callback) { 'getAllProfilesWith': function(item, callback) {
var profiles = []; var profiles = [];
this.db.scan('profiles', function(profile) { this.db.scan('profiles', function(profile) {
if(_.has(profile.profile, item)) { if(_.has(profile.profile, item) && profile.profile[item] != null) {
profiles.push(profile); profiles.push(profile);
} }
}, function(err) { }, function(err) {