fix bug in pagination.

This commit is contained in:
Jason Schwarzenberger
2020-12-01 23:20:16 +13:00
parent daa49ede7e
commit 7f46646b9a
4 changed files with 4 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ const API_URL = process.env.API_URL || 'http://localhost:33842';
export async function get(req, res) {
const { skip, limit } = {
skip: req.query.skip || 0,
limit: req.query.query || 20,
limit: req.query.limit || 20,
};
const response = await fetch(`${API_URL}/api?skip=${skip}&limit=${limit}`);
res.writeHead(response.status, { 'Content-Type': 'application/json' });