X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=server%2Fmiddlewares%2Fpagination.ts;h=b59717d7bc46edf541f7418549df124201d842bd;hb=4ddcb7c3bad4e98d05d25298f7f11353a639b360;hp=043869303f72f0139de9dcbd377a83fbdc89e276;hpb=c8861d5dc0436ef4342ce517241e3591fa256a13;p=github%2FChocobozzz%2FPeerTube.git diff --git a/server/middlewares/pagination.ts b/server/middlewares/pagination.ts index 043869303..b59717d7b 100644 --- a/server/middlewares/pagination.ts +++ b/server/middlewares/pagination.ts @@ -5,11 +5,9 @@ function setDefaultPagination (req: express.Request, res: express.Response, next if (!req.query.start) req.query.start = 0 else req.query.start = parseInt(req.query.start, 10) - if (!req.query.count) req.query.count = PAGINATION.COUNT.DEFAULT + if (!req.query.count) req.query.count = PAGINATION.GLOBAL.COUNT.DEFAULT else req.query.count = parseInt(req.query.count, 10) - if (req.query.count > PAGINATION.COUNT.MAX) req.query.count = PAGINATION.COUNT.MAX - return next() }