omg I don't know what I am doing

v1.18.x
Julian Lam 11 years ago
parent 8f879cd3eb
commit a078f73e84

@ -353,6 +353,16 @@ var async = require('async'),
return parseInt(read[index], 10) === 0; return parseInt(read[index], 10) === 0;
}); });
// Filter out topics that belong to categories that this user cannot access
async.filter(newtids, function(tid, next) {
threadTools.privileges(tid, uid, function(err, privileges) {
if (!err && privileges.read) {
next(true);
} else {
next(false);
}
});
}, function(newtids) {
unreadTids.push.apply(unreadTids, newtids); unreadTids.push.apply(unreadTids, newtids);
if(continueCondition()) { if(continueCondition()) {
@ -362,6 +372,7 @@ var async = require('async'),
callback(null); callback(null);
}); });
});
} }
}); });
}, function(err) { }, function(err) {

Loading…
Cancel
Save