dont call db for guests

This commit is contained in:
Barış Soner Uşaklı
2018-11-22 22:21:03 -05:00
parent 5810c9fecc
commit b8c08a5417
2 changed files with 14 additions and 15 deletions

View File

@@ -516,14 +516,15 @@ module.exports = function (Topics) {
};
Topics.filterNewTids = function (tids, uid, callback) {
if (parseInt(uid, 10) <= 0) {
return setImmediate(callback, null, []);
}
async.waterfall([
function (next) {
db.sortedSetScores('uid:' + uid + ':tids_read', tids, next);
},
function (scores, next) {
tids = tids.filter(function (tid, index) {
return tid && !scores[index];
});
tids = tids.filter((tid, index) => tid && !scores[index]);
next(null, tids);
},
], callback);
@@ -535,9 +536,7 @@ module.exports = function (Topics) {
db.sortedSetScores('topics:posts', tids, next);
},
function (scores, next) {
tids = tids.filter(function (tid, index) {
return tid && scores[index] <= 1;
});
tids = tids.filter((tid, index) => tid && scores[index] <= 1);
next(null, tids);
},
], callback);