chore: newline

This commit is contained in:
Julian Lam
2023-01-18 09:59:36 -05:00
parent f3d8ff994b
commit f77f72f9a0
2 changed files with 2 additions and 0 deletions

View File

@@ -18,6 +18,7 @@ recentController.get = async function (req, res, next) {
if (!data) {
return next();
}
res.render('recent', data);
};

View File

@@ -24,5 +24,6 @@ topController.get = async function (req, res, next) {
if (req.loggedIn) {
data.rssFeedUrl += `?${feedQs}`;
}
res.render('top', data);
};