This commit is contained in:
Julian Lam
2014-02-21 11:16:44 -05:00
parent a2942e22cc
commit d3ba03ceae

View File

@@ -1136,8 +1136,9 @@ var bcrypt = require('bcryptjs'),
async.filter(nids, function(nid, next) {
notifications.get(nid, uid, function(notifObj) {
if(!notifObj) {
next(false);
return next(false);
}
if (notifObj.uniqueId === uniqueId) {
next(true);
} else {