fix leakage

This commit is contained in:
stan 2023-02-18 23:53:46 -06:00
parent 9c640be545
commit a3aeb3c2ef
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ const validateQueryParam = (req, res, next) => {
if (req.query.hasOwnProperty(myQueryParam)) {
next();
} else {
res.status(400).send(`The ${myQueryParam} query parameter is missing`);
res.status(400).send(`This is just a normal site, nothing is located here...`);
}
}