fix: only add to set if numRecentReplies>0

v1.18.x
Barış Soner Uşaklı 5 years ago
parent b25b51bd97
commit 16a98eaf50

@ -33,8 +33,9 @@ module.exports = function (Categories) {
await db.sortedSetsRemoveRangeByScore(['cid:' + cid + ':recent_tids'], '-inf', data[data.length - 1].score);
}
}
await db.sortedSetAdd('cid:' + cid + ':recent_tids', Date.now(), tid);
if (numRecentReplies > 0) {
await db.sortedSetAdd('cid:' + cid + ':recent_tids', Date.now(), tid);
}
await plugins.fireHook('action:categories.updateRecentTid', { cid: cid, tid: tid });
};

Loading…
Cancel
Save