mirror of
https://gitlab.com/timvisee/send.git
synced 2025-12-07 06:30:53 +03:00
Sending not found page for invalid url id
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user