feat: redirect if page is below 1

This commit is contained in:
Cyber 2024-09-16 21:53:31 +02:00
parent 5a956cb708
commit 9caedb3f87

5
app.js
View File

@ -103,6 +103,11 @@ function getAllBlogPosts(page = 1, postsPerPage = 5) {
// Home Route (Blog Home with Pagination)
app.get('/', (req, res) => {
const page = parseInt(req.query.page) || 1;
if (page < 1) {
return res.redirect(req.hostname);
}
const postsPerPage = 5; // Set how many posts to display per page
const { blogPosts, totalPages } = getAllBlogPosts(page, postsPerPage);