diff options
Diffstat (limited to 'bucky')
| -rw-r--r-- | bucky/app/bucky.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bucky/app/bucky.js b/bucky/app/bucky.js index d494ce9..03a8b87 100644 --- a/bucky/app/bucky.js +++ b/bucky/app/bucky.js @@ -69,11 +69,11 @@ var bucky = (module.exports = { ensureHootstream: function (req, res, next) { Promise.all([ db.getHootstreamFiles({ - limit: req.query.limit || 10, + limit: req.query.limit || 20, offset: req.query.offset || 0, }), db.getHootstreamComments({ - limit: req.query.limit || 10, + limit: req.query.limit || 20, offset: req.query.offset || 0, }), ]).then(([files, comments]) => { |
