mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-03-08 05:30:40 +01:00
retrieving only the latest 25 posts in category rss feed now - issue #973
This commit is contained in:
@@ -88,7 +88,7 @@
|
||||
};
|
||||
|
||||
Feed.updateCategory = function (cid, callback) {
|
||||
categories.getCategoryById(cid, 0, -1, 0, function (err, categoryData) {
|
||||
categories.getCategoryById(cid, 0, 25, 0, function (err, categoryData) {
|
||||
if (err) return callback(new Error('category-invalid'));
|
||||
|
||||
var feed = new rss({
|
||||
|
||||
Reference in New Issue
Block a user