fix getUnreadByField

v1.18.x
barisusakli 10 years ago
parent 4f2603afd1
commit 5ff293109d

@ -228,9 +228,10 @@ var async = require('async'),
if (err) {
return callback(err);
}
value = value ? value.toString() : '';
nids = notifications.filter(function(notification) {
return notification && notification[field] !== value;
return notification && notification[field] === value;
}).map(function(notification) {
return notification.nid;
});

Loading…
Cancel
Save