Sending not found page for invalid url id

This commit is contained in:
Varghese Thomas 2017-08-11 20:46:59 +05:30
parent 98aebb7f70
commit c468e2f34e
1 changed files with 1 additions and 1 deletions

View File

@ -148,7 +148,7 @@ app.get('/exists/:id', async (req, res) => {
app.get('/download/:id', async (req, res) => { app.get('/download/:id', async (req, res) => {
const id = req.params.id; const id = req.params.id;
if (!validateID(id)) { if (!validateID(id)) {
res.sendStatus(404); res.status(404).render('notfound');
return; return;
} }