summaryrefslogtreecommitdiff
path: root/bucky
diff options
context:
space:
mode:
authorjulian laplace <julescarbon@gmail.com>2022-10-25 23:46:36 +0200
committerjulian laplace <julescarbon@gmail.com>2022-10-25 23:46:36 +0200
commitace77dca800311e7ea47817f7e5abafa44589b1f (patch)
treea387bea51559fa6d4303bd057244e303ad03387e /bucky
parentd09d28213b192712b09ecdc3431ad6af5b81ca1b (diff)
get more comments!
Diffstat (limited to 'bucky')
-rw-r--r--bucky/app/bucky.js4
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]) => {