diff options
| author | julian laplace <julescarbon@gmail.com> | 2022-10-25 23:46:36 +0200 |
|---|---|---|
| committer | julian laplace <julescarbon@gmail.com> | 2022-10-25 23:46:36 +0200 |
| commit | ace77dca800311e7ea47817f7e5abafa44589b1f (patch) | |
| tree | a387bea51559fa6d4303bd057244e303ad03387e | |
| parent | d09d28213b192712b09ecdc3431ad6af5b81ca1b (diff) | |
get more comments!
| -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]) => { |
