check count before privileges

v1.18.x
barisusakli 10 years ago
parent 6a3a3669d2
commit 485827db84

@ -12,8 +12,11 @@ var async = require('async'),
module.exports = function(Categories) { module.exports = function(Categories) {
Categories.getRecentReplies = function(cid, uid, count, callback) { Categories.getRecentReplies = function(cid, uid, count, callback) {
if(!parseInt(count, 10)) {
return callback(null, []);
}
privileges.categories.can('read', cid, uid, function(err, canRead) { privileges.categories.can('read', cid, uid, function(err, canRead) {
if (err || !canRead || !parseInt(count, 10)) { if (err || !canRead) {
return callback(err, []); return callback(err, []);
} }

Loading…
Cancel
Save