From a3aeb3c2efc14ae24b5eae2d2ee1309ad231ccd7 Mon Sep 17 00:00:00 2001 From: stan Date: Sat, 18 Feb 2023 23:53:46 -0600 Subject: [PATCH] fix leakage --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index f9585a6..14b711a 100644 --- a/src/index.js +++ b/src/index.js @@ -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...`); } }