new version

This commit is contained in:
2026-04-11 13:45:44 +02:00
parent 97b087bb5e
commit 477a80045f
8 changed files with 18 additions and 13 deletions
+1 -1
View File
@@ -84,7 +84,7 @@ router.get('/', (req, res) => {
});
router.get('/403', (req, res) => {
const reason = req.query.reason || null;
const reason = req.query.reason ? req.query.reason : null;
res.render('403', { reason });
})